Browse Source

优化用户审核功能,添加企业部门列表获取,调整样式和逻辑

master
parent
commit
27ce3d83c2
  1. 11
      src/api/system/user/index.ts
  2. 7
      src/components/ContentWrap/src/ContentWrap.vue
  3. 2
      src/components/DictTag/src/DictTag.vue
  4. 3
      src/views/Login/SocialLogin.vue
  5. 3
      src/views/Login/components/QrCodeForm.vue
  6. 143
      src/views/enterpriseinspections/EnterpriseInspectionsForm.vue
  7. 54
      src/views/enterpriseinspections/detail.vue
  8. 42
      src/views/enterpriseinspections/index.vue
  9. 2
      src/views/system/taglibrary/index.vue
  10. 2
      src/views/task/index.vue

11
src/api/system/user/index.ts

@ -113,10 +113,7 @@ export const getExamieList = (audit: number) => {
* *
*/ */
export function examineUser(data) { export function examineUser(data) {
console.log('data=>', data)
return request.put({ url: '/system/user/user_audit', data }) return request.put({ url: '/system/user/user_audit', data })
return request.put({url: '/system/user/user_audit', data})
} }
// 专管员列表 // 专管员列表
@ -128,3 +125,11 @@ export const getEnterpriseManager = () => {
export const deptByMenu = () => { export const deptByMenu = () => {
return request.get({ url: '/system/user/deptByMenu' }) return request.get({ url: '/system/user/deptByMenu' })
} }
/**
*
*/
export const getDeptByEnterprise = () => {
return request.get({ url: '/system/user/enterprise_manager_dept_list' })
}

7
src/components/ContentWrap/src/ContentWrap.vue

@ -34,3 +34,10 @@ defineProps({
<slot></slot> <slot></slot>
</ElCard> </ElCard>
</template> </template>
<style lang="scss" scoped>
:deep(.el-card__header) {
border-bottom: none;
padding-bottom: 0;
}
</style>

2
src/components/DictTag/src/DictTag.vue

@ -91,6 +91,4 @@ export default defineComponent({
}) })
</script> </script>
<style scoped lang="scss">
</style>

3
src/views/Login/SocialLogin.vue

@ -320,6 +320,9 @@ const handleLogin = async (params) => {
onMounted(() => { onMounted(() => {
getCookie() getCookie()
tryLogin() tryLogin()
})
onUnmounted(()=>{
}) })
</script> </script>

3
src/views/Login/components/QrCodeForm.vue

@ -121,10 +121,11 @@ onMounted(() => {
// getCookie() // getCookie()
getimg() getimg()
}) })
onUnmounted(() => { onBeforeUnmount(() => {
// //
clearInterval(intervalId.value) clearInterval(intervalId.value)
}) })
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.expired-text { .expired-text {

143
src/views/enterpriseinspections/EnterpriseInspectionsForm.vue

@ -1,109 +1,76 @@
<template> <template>
<Dialog title="结果反馈" v-model="dialogVisible"> <Dialog title="结果反馈" v-model="dialogVisible" width="800" top="5vh">
<div class="box"> <section class="content-wrapper">
<div class="img"> <section>
<div v-for="item in imgList" :key="item"> <section class="label">处理意见</section>
<el-image style="width: 180px; height: 180px" :src="item" :preview-src-list="imgList" /> <section class="line-height-24px text-16px color-#303133"> {{ detail.feedBack }} </section>
</div> </section>
</div> <section>
<div class="text">{{ dataValue.feedBack }}</div> <section class="label">照片取证</section>
</div> <section class="image-wrapper">
<el-image
v-for="(photo, index) in detail.fileList"
:initial-index="index"
:preview-src-list="detail.fileList.map((i) => i.url)"
:key="photo.id"
:src="photo.url"
class="img"
/>
</section>
</section>
</section>
</Dialog> </Dialog>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { EnterpriseInspectionsApi, EnterpriseInspectionsVO } from '@/api/enterpriseinspections'
/** 企业检查记录表,用于记录与企业相关的环保检查信息。 表单 */ /** 企业检查记录表,用于记录与企业相关的环保检查信息。 表单 */
defineOptions({ name: 'EnterpriseInspectionsForm' }) defineOptions({ name: 'EnterpriseInspectionsForm' })
const { t } = useI18n() //
const message = useMessage() //
const dialogVisible = ref(false) // const dialogVisible = ref(false) //
const formLoading = ref(false) // 12
const formType = ref('') // create - update -
const formData = ref({
id: undefined,
taskId: undefined,
enterpriseId: undefined
})
// const formRules = reactive({
// })
const formRef = ref() // Ref
const dataValue = ref() const detail = ref()
const imgList = ref([])
/** 打开弹窗 */ /** 打开弹窗 */
const open = async (data) => { const open = async (param: any) => {
detail.value = param
dialogVisible.value = true dialogVisible.value = true
dataValue.value = data
if (data.fileList.length > 0) {
imgList.value = data.fileList.map((i) => i.url)
}
console.log('imgList.value=>', imgList.value)
// //
// if (id) {
// formLoading.value = true
// try {
// formData.value = await EnterpriseInspectionsApi.getEnterpriseInspections(id)
// } finally {
// formLoading.value = false
// }
// }
} }
defineExpose({ open }) // open defineExpose({ open }) // open
</script>
/** 提交表单 */ <style scoped lang="scss">
const emit = defineEmits(['success']) // success .content-wrapper {
const submitForm = async () => { display: grid;
// grid-template-rows: 1fr;
await formRef.value.validate() grid-template-columns: 1.5fr 1fr;
// grid-gap: 20px;
formLoading.value = true padding-bottom: 20px;
try { .label {
const data = formData.value as unknown as EnterpriseInspectionsVO margin-bottom: 20px;
if (formType.value === 'create') { font-size: 16px;
await EnterpriseInspectionsApi.createEnterpriseInspections(data) display: flex;
message.success(t('common.createSuccess')) flex-flow: row nowrap;
} else { gap: 8px;
await EnterpriseInspectionsApi.updateEnterpriseInspections(data) line-height: 24px;
message.success(t('common.updateSuccess')) align-items: center;
color: #303133;
&::before {
content: '';
display: block;
width: 3px;
height: 16px;
background-color: var(--el-color-primary);
} }
dialogVisible.value = false
//
emit('success')
} finally {
formLoading.value = false
} }
} .image-wrapper {
// /** */
// const resetForm = () => {
// formData.value = {
// id: undefined,
// taskId: undefined,
// enterpriseId: undefined,
// }
// formRef.value?.resetFields()
// }
</script>
<style scoped>
.box {
display: flex;
flex-direction: column;
.img {
display: flex; display: flex;
flex-direction: row; flex-flow: row wrap;
flex-wrap: wrap; gap: 20px;
justify-content: center; .img {
gap: 15px; width: 120px;
} height: 120px;
.text { border-radius: 4px;
padding: 15px; }
} }
} }
</style> </style>

54
src/views/enterpriseinspections/detail.vue

@ -1,12 +1,23 @@
<template> <template>
<ContentWrap title="" style="padding: 17px"> <ContentWrap title="任务状况">
<section class="grid grid-cols-3 grid-rows-2 gap-20px"> <section class="grid grid-cols-3 grid-rows-2 gap-20px">
<section class="item"> <section class="item">
<section class="label">任务名称</section> <section class="label">任务名称</section>
<section> <section>
{{ detailData.taskName }} {{ detailData.taskName }}
</section> </section>
<el-button type="primary" link text>详情</el-button> <el-button
type="primary"
link
text
@click="
push({
path: `/enterprises/update`,
query: { id: detailData.enterpriseId }
})
"
>详情
</el-button>
</section> </section>
<section class="item"> <section class="item">
<section class="label">任务类型</section> <section class="label">任务类型</section>
@ -19,7 +30,18 @@
<section class="item"> <section class="item">
<section class="label">企业名称</section> <section class="label">企业名称</section>
<section>{{ detailData.enterpriseName }} </section> <section>{{ detailData.enterpriseName }} </section>
<el-button type="primary" link text>详情</el-button> <el-button
type="primary"
link
text
@click="
push({
path: `/enterprises/update`,
query: { id: detailData.enterpriseId }
})
"
>详情
</el-button>
</section> </section>
<section class="item"> <section class="item">
<section class="label">所属部门</section> <section class="label">所属部门</section>
@ -42,7 +64,7 @@
</section> </section>
</section> </section>
</ContentWrap> </ContentWrap>
<ContentWrap title=""> <ContentWrap title="执法流程">
<el-table v-loading="loading" :data="list" :show-overflow-tooltip="true"> <el-table v-loading="loading" :data="list" :show-overflow-tooltip="true">
<el-table-column label="执法人员" prop="inspectName" /> <el-table-column label="执法人员" prop="inspectName" />
<el-table-column label="协同执法" prop="cooperateWithName" /> <el-table-column label="协同执法" prop="cooperateWithName" />
@ -91,15 +113,21 @@ const queryFormRef = ref()
const detailRef = ref() const detailRef = ref()
const route = useRoute() const route = useRoute()
const formRef = ref() const formRef = ref()
const { push } = useRouter()
const queryParams = reactive({ const queryParams = reactive({
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
inspectionsId: route.query.id inspectionsId: route.query.id
}) })
const openForm = (data) => { const detailData = ref({
formRef.value.open(data) enterpriseName: undefined,
} taskName: undefined,
tagList: undefined,
department: undefined,
inspectName: undefined,
cooperateWithName: undefined,
id: undefined
})
const changeUserRef = ref() const changeUserRef = ref()
// //
@ -128,16 +156,6 @@ const getList = async () => {
} }
} }
const detailData = ref({
enterpriseName: undefined,
taskName: undefined,
tagList: undefined,
department: undefined,
inspectName: undefined,
cooperateWithName: undefined,
id: undefined
})
onMounted(() => { onMounted(() => {
getDetail(route.query.id) getDetail(route.query.id)
getList(route.query.id) getList(route.query.id)

42
src/views/enterpriseinspections/index.vue

@ -3,22 +3,27 @@
<section class="flex flex-col gap-20px"> <section class="flex flex-col gap-20px">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<el-form :model="queryParams" ref="queryFormRef" :inline="true" class="formClass"> <el-form :model="queryParams" ref="queryFormRef" :inline="true" class="formClass">
<el-form-item label="" prop="taskId"> <el-form-item label="" prop="enterpriseName">
<el-input <el-input
v-model="queryParams.taskName" v-model="queryParams.enterpriseName"
placeholder="请输入企业名称" placeholder="请输入企业名称"
clearable clearable
@keyup.enter="handleQuery" @keyup.enter="handleQuery"
:prefix-icon="Search" :prefix-icon="Search"
/> />
</el-form-item> </el-form-item>
<el-form-item label="" prop="enterpriseId"> <el-form-item label="" prop="departmentId">
<el-select v-model="queryParams.deptId" placeholder="请选择部门"> <el-select v-model="queryParams.departmentId" placeholder="请选择部门">
<el-option /> <el-option
v-for="item in deptList"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="" prop="enterpriseId"> <el-form-item label="" prop="inspectionsStatus">
<el-select v-model="queryParams.deptId" placeholder="请选择进度状态"> <el-select v-model="queryParams.inspectionsStatus" placeholder="请选择进度状态">
<el-option <el-option
v-for="dict in getDictOptions(DICT_TYPE.INSPECTIONS_STATUS)" v-for="dict in getDictOptions(DICT_TYPE.INSPECTIONS_STATUS)"
:key="dict.value" :key="dict.value"
@ -27,8 +32,8 @@
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="" prop="enterpriseId"> <el-form-item label="" prop="userId">
<el-select v-model="queryParams.deptId" placeholder="请选择执法人员" filterable> <el-select v-model="queryParams.userId" placeholder="请选择执法人员" filterable clearable>
<el-option <el-option
v-for="item in userList" v-for="item in userList"
:key="item.id" :key="item.id"
@ -122,7 +127,7 @@ import { EnterpriseInspectionsApi, EnterpriseInspectionsVO } from '@/api/enterpr
import EnterpriseInspectionsForm from './EnterpriseInspectionsForm.vue' import EnterpriseInspectionsForm from './EnterpriseInspectionsForm.vue'
import { DICT_TYPE, getDictOptions } from '@/utils/dict' import { DICT_TYPE, getDictOptions } from '@/utils/dict'
import { Search } from '@element-plus/icons-vue' import { Search } from '@element-plus/icons-vue'
import { getSimpleUserZGList } from '@/api/system/user' import { getSimpleUserZGList, getDeptByEnterprise } from '@/api/system/user'
const { push } = useRouter() const { push } = useRouter()
@ -137,10 +142,13 @@ const total = ref(0) // 列表的总页数
const queryParams = reactive({ const queryParams = reactive({
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
taskName: undefined, enterpriseName: undefined,
enterpriseName: undefined inspectionsStatus: undefined,
departmentId: undefined,
userId: undefined
}) })
const userList = ref() const userList = ref()
const deptList = ref()
const queryFormRef = ref() // const queryFormRef = ref() //
const exportLoading = ref(false) // const exportLoading = ref(false) //
const formRef = ref() const formRef = ref()
@ -169,10 +177,12 @@ const resetQuery = () => {
handleQuery() handleQuery()
} }
/** 查询用户列表 */ /** 查询搜索项列表 */
const getUserlist = async () => { const getSearchOption = async () => {
userList.value = await getSimpleUserZGList() userList.value = await getSimpleUserZGList({})
deptList.value = await getDeptByEnterprise()
} }
/** 导出按钮操作 */ /** 导出按钮操作 */
const handleExport = async () => { const handleExport = async () => {
try { try {
@ -188,7 +198,7 @@ const handleExport = async () => {
} }
} }
getUserlist() getSearchOption()
/** 初始化 **/ /** 初始化 **/
onMounted(() => { onMounted(() => {

2
src/views/system/taglibrary/index.vue

@ -14,7 +14,7 @@
placeholder="请输入标签的名称" placeholder="请输入标签的名称"
clearable clearable
@keyup.enter.prevent="handleQuery" @keyup.enter.prevent="handleQuery"
class="!w-240px" class="!w-370px"
/> />
</el-form-item> </el-form-item>
<el-form-item label=""> <el-form-item label="">

2
src/views/task/index.vue

@ -85,7 +85,7 @@
<el-table-column label="任务名称" align="left" prop="title" width="200" /> <el-table-column label="任务名称" align="left" prop="title" width="200" />
<el-table-column label="任务类型" align="left" prop="taskType"> <el-table-column label="任务类型" align="left" prop="taskType">
<template #default="scope"> <template #default="scope">
<el-tag>{{ scope.row.taskTypeName }}</el-tag> <el-tag size="nimi" round>{{ scope.row.taskTypeName }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="发布部门" align="left" prop="deptName" /> <el-table-column label="发布部门" align="left" prop="deptName" />

Loading…
Cancel
Save