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" > - + - + + + - + + + @@ -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 @@ - - + + - - - + + + + 确定 - + + + + + + + + + + + +
+ + + + + + + + + + + + + +
+
+ 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({ - - + \ 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 = () => { 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 @@