From 057303a09df9ac6447273634b08ae21f22a78552 Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Fri, 14 Feb 2025 17:36:45 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=89=A7=E6=B3=95=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/enterpriseinspections/index.vue | 19 +++++++++++-------- src/views/system/user/examine.vue | 2 +- src/views/system/user/index.vue | 8 +------- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/src/views/enterpriseinspections/index.vue b/src/views/enterpriseinspections/index.vue index 6020239..43bbdec 100644 --- a/src/views/enterpriseinspections/index.vue +++ b/src/views/enterpriseinspections/index.vue @@ -71,16 +71,24 @@ :show-overflow-tooltip="true" @selection-change="handleSelectionChange" > - + - + + + {{scope.row.enterpriseName}} + + - + + + {{scope.row.taskName}} + + @@ -160,11 +168,6 @@ const getList = async () => { loading.value = true try { const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage(queryParams) - - data.list.forEach(item => { - item.tagList = item.tagList.join() - }); - list.value = data.list total.value = data.total } finally { diff --git a/src/views/system/user/examine.vue b/src/views/system/user/examine.vue index 920266f..be6e089 100644 --- a/src/views/system/user/examine.vue +++ b/src/views/system/user/examine.vue @@ -153,7 +153,7 @@ const queryParams = reactive({ status: undefined, deptId: undefined, audit: [1,3], - userType: "1,2", + userType: "2, 3", createTime: [] }) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 9bc1349..6ef0e76 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -100,13 +100,7 @@ - Date: Thu, 20 Feb 2025 10:27:17 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/enterprises/index.ts | 4 +- src/components/UploadFile/src/UploadImgs.vue | 1 - src/views/enterpriseinspections/index.vue | 4 +- src/views/enterprises/index.vue | 3 +- src/views/enterprises/update.vue | 183 ++++++++++++++----- src/views/task/create.vue | 2 + 6 files changed, 143 insertions(+), 54 deletions(-) diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts index 2b9f5c5..a6279ba 100644 --- a/src/api/enterprises/index.ts +++ b/src/api/enterprises/index.ts @@ -37,12 +37,12 @@ export const EnterprisesApi = { return await request.post({ url: `/system/enterprise/create`, data }) }, // PC新增企业 - pccreateEnterprises: async (data: EnterprisesVO) => { + pccreateEnterprises: async (data: any) => { return await request.post({ url: `/system/enterprise/pccreate`, data }) }, // 修改企业 - updateEnterprises: async (data: EnterprisesVO) => { + updateEnterprises: async (data: any) => { return await request.put({ url: `/system/enterprise/update`, data }) }, diff --git a/src/components/UploadFile/src/UploadImgs.vue b/src/components/UploadFile/src/UploadImgs.vue index c2280bc..e9b3e82 100644 --- a/src/components/UploadFile/src/UploadImgs.vue +++ b/src/components/UploadFile/src/UploadImgs.vue @@ -140,7 +140,6 @@ watch( fileList.value = [] // fix:处理掉缓存,表单重置后上传组件的内容并没有重置 return } - fileList.value = [] // 保障数据为空 fileList.value.push(...val) }, diff --git a/src/views/enterpriseinspections/index.vue b/src/views/enterpriseinspections/index.vue index 3a1ae42..b07fc3a 100644 --- a/src/views/enterpriseinspections/index.vue +++ b/src/views/enterpriseinspections/index.vue @@ -161,8 +161,6 @@ const getList = async () => { try { const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage(queryParams) - - list.value = data.list total.value = data.total } finally { @@ -226,4 +224,4 @@ const handleExport = async () => { onMounted(() => { getList() }) - \ No newline at end of file + diff --git a/src/views/enterprises/index.vue b/src/views/enterprises/index.vue index 30d3793..4b3e4d6 100644 --- a/src/views/enterprises/index.vue +++ b/src/views/enterprises/index.vue @@ -94,8 +94,6 @@ /> - - 搜索 重置 @@ -191,6 +189,7 @@ /> + diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index ddf23a5..3be1d30 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -60,26 +60,17 @@ - - + + - - - + + + + 确定 - + + + + + + + + + + + + + + + + + 任务编号: {{item.taskName}} + + + 任务名称: {{item.taskName}} + + + 计划开始时间: {{formatDate(item.taskStartTime)}} + + + 计划结束时间: {{formatDate(item.taskEndTime)}} + + + + + + + + + + + + + + + + + diff --git a/src/views/task/create.vue b/src/views/task/create.vue index de4690d..74a8eea 100644 --- a/src/views/task/create.vue +++ b/src/views/task/create.vue @@ -413,7 +413,9 @@ async function submitForm() { const validate = await unref(formRef).validate() if (validate) { const data = JSON.parse(JSON.stringify(formData.value)) + //任务状态默认初始值1 data.status=1; + console.log("任务类型:",formData.value.taskType) data.enterpriseIds = formData.value.enterprises.map((i) => i.id) if(data.enterpriseIds.length==0){ message.success("温馨提示:请您选择执法对象") From 318ea936d9c8b5867c0e90e6e6fa346e6db17bbe Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Thu, 20 Feb 2025 10:41:06 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/examineform.vue | 9 ++++++--- src/views/task/index.vue | 11 +++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/views/system/user/examineform.vue b/src/views/system/user/examineform.vue index 8167aa5..0941505 100644 --- a/src/views/system/user/examineform.vue +++ b/src/views/system/user/examineform.vue @@ -46,11 +46,14 @@ function open(param) { function submit(type) { form.value.audit = type; - UserApi.examineUser(form.value).then((res) => { - proxy.$modal.msgSuccess("审批成功"); + try { + UserApi.examineUser(form.value).then((res) => { emits("success"); - show.value = false; }); + + } finally { + show.value = false + } } defineExpose({ open }); diff --git a/src/views/task/index.vue b/src/views/task/index.vue index dfcd32d..edae37f 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -187,6 +187,17 @@ > 删除 + + + 审核 + + From 5377aa129965297aa9daf37754412745c4a8f3b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Thu, 20 Feb 2025 11:46:32 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E6=94=BF=E7=AD=96=E6=B3=95=E8=A7=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/policy/index.ts | 41 +++++ src/components/Editor/src/Editor.vue | 17 ++- src/permission.ts | 3 +- src/router/index.ts | 3 +- src/router/modules/remaining.ts | 10 ++ src/views/system/policy/PolicyForm.vue | 96 ++++++++++++ src/views/system/policy/index.vue | 200 +++++++++++++++++++++++++ src/views/system/policy/policyView.vue | 52 +++++++ 8 files changed, 416 insertions(+), 6 deletions(-) create mode 100644 src/api/system/policy/index.ts create mode 100644 src/views/system/policy/PolicyForm.vue create mode 100644 src/views/system/policy/index.vue create mode 100644 src/views/system/policy/policyView.vue diff --git a/src/api/system/policy/index.ts b/src/api/system/policy/index.ts new file mode 100644 index 0000000..b27657b --- /dev/null +++ b/src/api/system/policy/index.ts @@ -0,0 +1,41 @@ +import request from '@/config/axios' + +// 政策法规 VO +export interface PolicyVO { + id: number // id + name: string // 名称 + context: string // 内容 +} + +// 政策法规 API +export const PolicyApi = { + // 查询政策法规分页 + getPolicyPage: async (params: any) => { + return await request.get({ url: `/system/policy/page`, params }) + }, + + // 查询政策法规详情 + getPolicy: async (id: number) => { + return await request.get({ url: `/system/policy/get?id=` + id }) + }, + + // 新增政策法规 + createPolicy: async (data: PolicyVO) => { + return await request.post({ url: `/system/policy/create`, data }) + }, + + // 修改政策法规 + updatePolicy: async (data: PolicyVO) => { + return await request.put({ url: `/system/policy/update`, data }) + }, + + // 删除政策法规 + deletePolicy: async (id: number) => { + return await request.delete({ url: `/system/policy/delete?id=` + id }) + }, + + // 导出政策法规 Excel + exportPolicy: async (params) => { + return await request.download({ url: `/system/policy/export-excel`, params }) + }, +} \ No newline at end of file diff --git a/src/components/Editor/src/Editor.vue b/src/components/Editor/src/Editor.vue index 38c34e2..3a88a3f 100644 --- a/src/components/Editor/src/Editor.vue +++ b/src/components/Editor/src/Editor.vue @@ -27,7 +27,8 @@ const props = defineProps({ default: () => undefined }, readonly: propTypes.bool.def(false), - modelValue: propTypes.string.def('') + modelValue: propTypes.string.def(''), + showToolbar: propTypes.bool.def(true) }) const emit = defineEmits(['change', 'update:modelValue']) @@ -66,6 +67,7 @@ const editorConfig = computed((): IEditorConfig => { { placeholder: '请输入内容...', readOnly: props.readonly, + customAlert: (s: string, t: string) => { switch (t) { case 'success': @@ -87,7 +89,9 @@ const editorConfig = computed((): IEditorConfig => { }, autoFocus: false, scroll: true, + MENU_CONF: { + ['uploadImage']: { server: getUploadUrl(), // 单个文件的最大体积限制,默认为 2M @@ -133,7 +137,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'image', res.data) + insertFn(res.data.url, 'image', res.data.url) } }, ['uploadVideo']: { @@ -181,7 +185,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'mp4', res.data) + insertFn(res.data.url, 'mp4', res.data.url) } } }, @@ -210,6 +214,10 @@ onBeforeUnmount(() => { editor?.destroy() }) +const getShowToolbar = computed(() => { + return Boolean(props.showToolbar) +}) + const getEditorRef = async (): Promise => { await nextTick() return unref(editorRef.value) as IDomEditor @@ -221,9 +229,10 @@ defineExpose({ - + { - const resetWhiteNameList = ['Redirect', 'Login', 'NoFind', 'Root'] + const resetWhiteNameList = ['Redirect', 'Login', 'NoFind', 'Root','PolicyDetail'] router.getRoutes().forEach((route) => { const { name } = route if (name && !resetWhiteNameList.includes(name as string)) { diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 0316358..dc0f9d8 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -184,6 +184,16 @@ const remainingRouter: AppRouteRecordRaw[] = [ noTagsView: true } }, +{ + path: '/policyDetail', + component: () => import('@/views/system/policy/policyView.vue'), + name: 'PolicyDetail', + meta: { + noCache: true, + hidden: true, + title: '策略详情' + } + }, { path: '/sso', component: () => import('@/views/Login/Login.vue'), diff --git a/src/views/system/policy/PolicyForm.vue b/src/views/system/policy/PolicyForm.vue new file mode 100644 index 0000000..630eccb --- /dev/null +++ b/src/views/system/policy/PolicyForm.vue @@ -0,0 +1,96 @@ + + + + + + + + + + + + 确 定 + 取 消 + + + + \ No newline at end of file diff --git a/src/views/system/policy/index.vue b/src/views/system/policy/index.vue new file mode 100644 index 0000000..174faa1 --- /dev/null +++ b/src/views/system/policy/index.vue @@ -0,0 +1,200 @@ + + + + + + + + + + + + 搜索 + 重置 + + 新增 + + + 导出 + + + + + + + + + + + + + + + 编辑 + + + 删除 + + + 详情 + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/system/policy/policyView.vue b/src/views/system/policy/policyView.vue new file mode 100644 index 0000000..047ee92 --- /dev/null +++ b/src/views/system/policy/policyView.vue @@ -0,0 +1,52 @@ + + + + + + + + From 87ac06d7e54f3c4c64decbd3f13884b662554bbf Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Thu, 20 Feb 2025 17:40:59 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/enterprises/index.ts | 6 ++++ src/api/system/user/index.ts | 5 +++ src/views/enterpriseinspections/index.vue | 2 -- src/views/enterprises/update.vue | 33 +++++++++++++++++-- src/views/task/create.vue | 40 +++++------------------ 5 files changed, 50 insertions(+), 36 deletions(-) diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts index a6279ba..bf32a56 100644 --- a/src/api/enterprises/index.ts +++ b/src/api/enterprises/index.ts @@ -55,4 +55,10 @@ export const EnterprisesApi = { exportEnterprises: async (params) => { return await request.download({ url: `/system/enterprise/export-excel`, params }) }, + + // 标签查询 + tagList: async (params) => { + return await request.get({ url: `"/system/system/tag-library/list`, params }) + }, + } diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 365db18..425afe2 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -94,6 +94,11 @@ export const getSimpleUserZGList = (): Promise => { return request.get({ url: '/system/user/simple-zg-list' }) } +// 通过用户类型获取用户列表 +export const getSimpleUserListByUserType = (params:number) => { + return request.get({ url: '/system/user/simple-user-by-userType?type='+ params }) +} + /** * 查询审核列表 */ diff --git a/src/views/enterpriseinspections/index.vue b/src/views/enterpriseinspections/index.vue index b07fc3a..0204ffb 100644 --- a/src/views/enterpriseinspections/index.vue +++ b/src/views/enterpriseinspections/index.vue @@ -69,9 +69,7 @@ :data="list" :stripe="true" :show-overflow-tooltip="true" - @selection-change="handleSelectionChange" > - diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index 3be1d30..ed979bf 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -12,7 +12,7 @@ - + - + + + + + @@ -188,7 +202,10 @@ import { getStrDictOptions, DICT_TYPE } from '@/utils/dict' import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises' import { EnterpriseQualificationApi, EnterpriseQualificationVO } from '@/api/qualification' +import { UserVO, getSimpleUserListByUserType } from '@/api/system/user' + import { EnterpriseInspectionsApi, EnterpriseInspectionsVO } from '@/api/enterpriseinspections' + import { UploadImgs } from '@/components/UploadFile' import * as FileApi from '@/api/infra/file' import { ElMessage } from 'element-plus' @@ -213,6 +230,7 @@ const fileIds = ref([]); const qualificationlist = ref([]); const inspectionslist = ref([]); const inspectionsLogList = ref([]); +const enterpriseUserList = ref([]) const formData = ref({ id: undefined, @@ -233,8 +251,18 @@ const formData = ref({ managerDeptId: undefined, ides: undefined, startUserSelectAssignees:undefined, + enterpriseUserId: undefined, fileIds:[] }) + +const getEnterpriseUserList = async () => { + const type:number = 2 + const data = await getSimpleUserListByUserType(type) + console.log("datadata===>", data) + +} + + const formRules = reactive({ type: [{ required: true, message: '企业类型不能为空', trigger: 'change' }], enterprisesName: [{ required: true, message: '企业名称不能为空', trigger: 'blur' }], @@ -341,6 +369,7 @@ onMounted(() => { init() getQualificationList() getInspectionslList() + getEnterpriseUserList() //getInspectionsLogList() const openMapAndInit = async () => { if (showMap.value) { diff --git a/src/views/task/create.vue b/src/views/task/create.vue index 74a8eea..2d9e69d 100644 --- a/src/views/task/create.vue +++ b/src/views/task/create.vue @@ -16,7 +16,6 @@ value-format="YYYY-MM-DD" /> - - - @@ -125,8 +122,6 @@ /> - - @@ -144,8 +139,6 @@ - - 搜索 @@ -158,7 +151,6 @@ - - - 提 交 + 审核通过 + 删除 - - + \ No newline at end of file From 939631c86356a92a0c6c1925357280308085a937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Fri, 21 Feb 2025 09:00:02 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E4=BF=AE=E6=94=B9=20?= =?UTF-8?q?=E5=8F=8A=20=E5=8A=A0=E5=85=A5ai?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/Layout.vue | 1 + .../components/Setting/src/Setting copy.vue | 302 ++++++++ src/layout/components/Setting/src/Setting.vue | 89 +-- src/views/Home/Index.vue | 643 +++++++++--------- src/views/Home/echarts-data.ts | 282 +------- src/views/Home/types.ts | 7 +- src/views/system/policy/index.vue | 2 +- 7 files changed, 673 insertions(+), 653 deletions(-) create mode 100644 src/layout/components/Setting/src/Setting copy.vue diff --git a/src/layout/Layout.vue b/src/layout/Layout.vue index db7dc0e..abe2eb1 100644 --- a/src/layout/Layout.vue +++ b/src/layout/Layout.vue @@ -65,6 +65,7 @@ export default defineComponent({ }) + diff --git a/src/layout/components/Setting/src/Setting.vue b/src/layout/components/Setting/src/Setting.vue index 2973674..253a085 100644 --- a/src/layout/components/Setting/src/Setting.vue +++ b/src/layout/components/Setting/src/Setting.vue @@ -202,93 +202,20 @@ const clear = () => { - - - {{ t('setting.projectSetting') }} - + + + - - - {{ t('setting.theme') }} - - - - {{ t('setting.layout') }} - - - - {{ t('setting.systemTheme') }} - - - - {{ t('setting.headerTheme') }} - - - - - {{ t('setting.menuTheme') }} - - - - - - {{ t('setting.interfaceDisplay') }} - - - - - {{ t('setting.copy') }} - - - - {{ t('setting.clearAndReset') }} - - diff --git a/src/views/Home/Index.vue b/src/views/Home/Index.vue index 4ca80e1..1268fb2 100644 --- a/src/views/Home/Index.vue +++ b/src/views/Home/Index.vue @@ -1,340 +1,349 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + 任务信息 + + + + + + + + + + + + + + + + + + + + + + + + 最新任务 + + + + + + {{ item.title }} + {{ item.user }} + {{ item.date }} + - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + 企业信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.title }} + {{ item.days }} + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + +