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/router/modules/remaining.ts b/src/router/modules/remaining.ts index dc0f9d8..3cc5b84 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/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("温馨提示:请您选择执法对象") 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