From 20f321f3de9f82aefdd345610f277ca781d0707d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Fri, 21 Mar 2025 16:11:35 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E9=A3=8E=E6=A0=BC=EF=BC=8C=E8=B0=83=E6=95=B4=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E5=A3=B0=E6=98=8E=E5=8F=8A=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.local | 4 +- src/api/enterpriseinspections/index.ts | 19 +- src/api/system/user/index.ts | 23 +- src/components/DictTag/src/DictTag.vue | 6 + .../components/BackOperation/src/index.vue | 8 +- src/styles/variables.scss | 10 +- src/views/Home/Index.vue | 13 +- .../enterpriseinspections/ChangeUser.vue | 103 ++----- .../EnterpriseInspectionsForm.vue | 49 ++-- .../changeInspections.vue | 202 ------------- src/views/enterpriseinspections/detail.vue | 183 ++++++------ src/views/enterpriseinspections/index.vue | 268 ++++++++---------- src/views/enterprises/index.vue | 6 +- src/views/enterprises/update.vue | 192 ++++++------- src/views/system/jobinfo/JobInfoForm.vue | 4 +- src/views/system/jobinfo/index.vue | 203 +++++-------- src/views/system/policy/PolicyForm.vue | 18 +- src/views/system/policy/index.vue | 2 + src/views/system/taglibrary/form.vue | 4 +- 19 files changed, 507 insertions(+), 810 deletions(-) delete mode 100644 src/views/enterpriseinspections/changeInspections.vue diff --git a/.env.local b/.env.local index 0612f42..c2f2554 100644 --- a/.env.local +++ b/.env.local @@ -5,9 +5,9 @@ VITE_DEV=true # 请求路径 #VITE_BASE_URL='http://localhost:48080' -#VITE_BASE_URL='http://188.188.3.232:48080' +VITE_BASE_URL='http://188.188.3.232:48080' # VITE_BASE_URL='http://188.188.5.188:48080' -VITE_BASE_URL='https://hb.jzce.com' +#VITE_BASE_URL='https://hb.jzce.com' # 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务 VITE_UPLOAD_TYPE=server diff --git a/src/api/enterpriseinspections/index.ts b/src/api/enterpriseinspections/index.ts index f4cbd2c..e3d2451 100644 --- a/src/api/enterpriseinspections/index.ts +++ b/src/api/enterpriseinspections/index.ts @@ -41,18 +41,19 @@ export const EnterpriseInspectionsApi = { }, // 导出企业检查记录表,用于记录与企业相关的环保检查信息。 Excel - inspectionsLogList: async (params:any) => { + inspectionsLogList: async (params: any) => { return await request.get({ url: `/system/inspections-log/list`, params }) }, //根据 用户id和任务名称查询可以转发的任务 - getListByUserIdAndTaskName: async (params:any) => { - return await request.get({ url: `/system/enterprise-inspections/getListByUserIdAndTaskName`, params }) - }, - - // 新增企业检查记录表,用于记录与企业相关的环保检查信息。 - passOn: async (data:any) => { + getListByUserIdAndTaskName: async (params: any) => { + return await request.get({ + url: `/system/enterprise-inspections/getListByUserIdAndTaskName`, + params + }) + }, + // 变更人员ID + passOn: async (data: any) => { return await request.post({ url: `/system/enterprise-inspections/passOn`, data }) - }, - + } } diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 9e9a8b4..d437740 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -19,14 +19,11 @@ export interface UserVO { area: string } - - // 查询用户管理列表 export const getUserPage = (params: PageParam) => { return request.get({ url: '/system/user/page', params }) } - // 查询专管员用户管理列表 export const getPcUserPage = (params: PageParam) => { return request.get({ url: '/system/user/pcpage', params }) @@ -62,7 +59,6 @@ export const deleteUserAllData = (id: number) => { return request.delete({ url: '/system/user/test_delete?id=' + id }) } - // 导出用户 export const exportUser = (params) => { return request.download({ url: '/system/user/export', params }) @@ -94,17 +90,17 @@ export const updateUserStatus = (id: number, status: number) => { // 获取用户精简信息列表 export const getSimpleUserList = (): Promise => { return request.get({ url: '/system/user/simple-list' }) -} +} -// 获取用户精简信息列表 -export const getSimpleUserZGList = (): Promise => { - return request.get({ url: '/system/user/simple-zg-list' }) -} +// 获取专管员 +export const getSimpleUserZGList = (param) => { + return request.get({ url: `/system/user/simple-zg-list`, param }) +} // 通过用户类型获取用户列表 -export const getSimpleUserListByUserType = (params:number) => { - return request.get({ url: '/system/user/simple-user-by-userType?type='+ params }) -} +export const getSimpleUserListByUserType = (params: number) => { + return request.get({ url: '/system/user/simple-user-by-userType?type=' + params }) +} /** * 查询审核列表 @@ -117,8 +113,7 @@ export const getExamieList = (audit: number) => { * 审核用户 */ 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 }) } diff --git a/src/components/DictTag/src/DictTag.vue b/src/components/DictTag/src/DictTag.vue index 6414eaa..a0e7a41 100644 --- a/src/components/DictTag/src/DictTag.vue +++ b/src/components/DictTag/src/DictTag.vue @@ -75,6 +75,8 @@ export default defineComponent({ type={dict?.colorType || null} color={dict?.cssClass && isHexColor(dict?.cssClass) ? dict?.cssClass : ''} disableTransitions={true} + round={true} + size="mini" > {dict?.label} @@ -88,3 +90,7 @@ export default defineComponent({ } }) + + diff --git a/src/layout/components/BackOperation/src/index.vue b/src/layout/components/BackOperation/src/index.vue index 032bc13..2bac2fb 100644 --- a/src/layout/components/BackOperation/src/index.vue +++ b/src/layout/components/BackOperation/src/index.vue @@ -5,17 +5,23 @@ import { onBeforeRouteUpdate } from 'vue-router' defineOptions({ name: 'BackOperation' }) const router = useRouter() -const isBack:any = ref(false) +const route = useRoute() +const isBack: any = ref(false) defineProps({ color: propTypes.string.def('') }) + + const goback = () => { router.go(-1) } onBeforeRouteUpdate((to) => { isBack.value = to.meta.hidden }) +onMounted(()=>{ + isBack.value = route.meta.hidden +}) - + + diff --git a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue index 1f86e7b..0f1d637 100644 --- a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue +++ b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue @@ -1,18 +1,13 @@ diff --git a/src/views/enterpriseinspections/changeInspections.vue b/src/views/enterpriseinspections/changeInspections.vue deleted file mode 100644 index 4bcd517..0000000 --- a/src/views/enterpriseinspections/changeInspections.vue +++ /dev/null @@ -1,202 +0,0 @@ - - - diff --git a/src/views/enterpriseinspections/detail.vue b/src/views/enterpriseinspections/detail.vue index 652e4c7..ff376bf 100644 --- a/src/views/enterpriseinspections/detail.vue +++ b/src/views/enterpriseinspections/detail.vue @@ -1,50 +1,65 @@ - + + - @@ -55,58 +70,57 @@ @pagination="getList" /> - - + - + diff --git a/src/views/enterpriseinspections/index.vue b/src/views/enterpriseinspections/index.vue index 633a330..a928c24 100644 --- a/src/views/enterpriseinspections/index.vue +++ b/src/views/enterpriseinspections/index.vue @@ -1,108 +1,105 @@ + + diff --git a/src/views/enterprises/index.vue b/src/views/enterprises/index.vue index bdb6b79..3b6fdc9 100644 --- a/src/views/enterprises/index.vue +++ b/src/views/enterprises/index.vue @@ -16,6 +16,7 @@ placeholder="请输入企业名称" clearable @keyup.enter="handleQuery" + :prefix-icon="Search" /> @@ -59,8 +60,8 @@ value-format="YYYY-MM-DD HH:mm:ss" type="daterange" format="YYYY年M月D日" - start-placeholder="开始日期" - end-placeholder="结束日期" + start-placeholder="起始日期" + end-placeholder="截止日期" :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]" /> @@ -162,6 +163,7 @@ import { dateFormatter } from '@/utils/formatTime' import download from '@/utils/download' import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises' import { TagLibraryApi } from '@/api/system/taglibrary' +import {Search} from "@element-plus/icons-vue"; /** 企业 列表 */ defineOptions({ name: 'Enterprises' }) diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index cf7ffa6..a8990f2 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -22,7 +22,6 @@ /> - - - - - + 新增 - - + + - + - + - + - - + +
+ :name="item.taskName" + @click="getInspectionsLogList(item.id)" + > - - - + + +
- diff --git a/src/components/DictTag/src/DictTag.vue b/src/components/DictTag/src/DictTag.vue index a0e7a41..a1e927d 100644 --- a/src/components/DictTag/src/DictTag.vue +++ b/src/components/DictTag/src/DictTag.vue @@ -91,6 +91,4 @@ export default defineComponent({ }) - diff --git a/src/views/Login/SocialLogin.vue b/src/views/Login/SocialLogin.vue index 18ac397..daabe45 100644 --- a/src/views/Login/SocialLogin.vue +++ b/src/views/Login/SocialLogin.vue @@ -320,6 +320,9 @@ const handleLogin = async (params) => { onMounted(() => { getCookie() tryLogin() +}) +onUnmounted(()=>{ + }) diff --git a/src/views/Login/components/QrCodeForm.vue b/src/views/Login/components/QrCodeForm.vue index 2d0e7a0..4d04794 100644 --- a/src/views/Login/components/QrCodeForm.vue +++ b/src/views/Login/components/QrCodeForm.vue @@ -121,10 +121,11 @@ onMounted(() => { // getCookie() getimg() }) -onUnmounted(() => { +onBeforeUnmount(() => { // 组件销毁时清除定时器 clearInterval(intervalId.value) }) + diff --git a/src/views/enterpriseinspections/detail.vue b/src/views/enterpriseinspections/detail.vue index ff376bf..705df25 100644 --- a/src/views/enterpriseinspections/detail.vue +++ b/src/views/enterpriseinspections/detail.vue @@ -1,12 +1,23 @@