From 0b5b35a97caf1377d92bd87b288344334362d0e9 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: Wed, 19 Feb 2025 09:24:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=AD=89=E5=BE=85=E4=B8=AD=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/remaining.ts | 2 +- src/views/wait.vue | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/views/wait.vue diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 0316358..6ce99cc 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -62,7 +62,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ component: () => import('@/views/Home/Index.vue'), name: 'Index', meta: { - title: '首页', + title: '驾驶舱', icon: 'ep:home-filled', noCache: false, affix: true diff --git a/src/views/wait.vue b/src/views/wait.vue new file mode 100644 index 0000000..3736e5b --- /dev/null +++ b/src/views/wait.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file From fb441e48b38cc4d8ed4a813d948a71b850f0f1bc Mon Sep 17 00:00:00 2001 From: zy <276996223@qq.com> Date: Thu, 20 Feb 2025 10:27:17 +0800 Subject: [PATCH 2/2] =?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("温馨提示:请您选择执法对象")