From 58146ba9707ad6a15856520f85e8bc83c0b03d6a Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Mon, 31 Mar 2025 09:56:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/airqualitycollection/index.vue | 2 +- src/views/enterpriseinspections/detail.vue | 2 +- src/views/task/create.vue | 3 +- src/views/task/detail.vue | 32 ++++++++++++++++------ src/views/task/index.vue | 1 - 5 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/views/airqualitycollection/index.vue b/src/views/airqualitycollection/index.vue index 1fd28be..0f06173 100644 --- a/src/views/airqualitycollection/index.vue +++ b/src/views/airqualitycollection/index.vue @@ -76,7 +76,7 @@ label="时间" align="center" prop="time" - width="220px" + width="200px" :cell-style="{ borderBottom: '1px solid #EBEEF5' }" :header-cell-style="{ borderBottom: '1px solid #EBEEF5', diff --git a/src/views/enterpriseinspections/detail.vue b/src/views/enterpriseinspections/detail.vue index 3a75377..ddeb521 100644 --- a/src/views/enterpriseinspections/detail.vue +++ b/src/views/enterpriseinspections/detail.vue @@ -12,7 +12,7 @@ text @click=" push({ - path: `/task/create`, + path: `/task/detail`, query: { id: detailData.taskId } }) " diff --git a/src/views/task/create.vue b/src/views/task/create.vue index a862978..0b17c76 100644 --- a/src/views/task/create.vue +++ b/src/views/task/create.vue @@ -312,8 +312,9 @@ const goBack = () => { const handleDeleteTask = async () => { + await message.delConfirm("是否确定删除任务!", "删除任务") try { - await message.delConfirm("是否确定删除任务!", "删除任务") + await TaskInfoApi.deleteTaskInfo(formData.value.id) } finally { message.success('操作成功') diff --git a/src/views/task/detail.vue b/src/views/task/detail.vue index 1aef0e8..a87a571 100644 --- a/src/views/task/detail.vue +++ b/src/views/task/detail.vue @@ -7,30 +7,30 @@
- 任务标题 {{formData.title}} +
任务标题
{{formData.title}}
- 任务周期 {{formData.startDate}}-{{formData.endDate}} +
任务周期
{{formData.startDate}}-{{formData.endDate}}
- 任务状态 +
任务状态
- 任务类型 {{formData.taskTypeName}} +
任务类型
{{formData.taskTypeName}}
- 通知时间 {{ getDictLabel(DICT_TYPE.TASK_NOTICE_TIME, formData.execCycle) }} +
通知时间
{{ getDictLabel(DICT_TYPE.TASK_NOTICE_TIME, formData.execCycle) }}
- 发布部门 {{formData.deptName}} +
发布部门
{{formData.deptName}}
- 任务描述 {{formData.description}} +
任务描述
{{formData.description}}
@@ -239,9 +239,10 @@ const enterprise:any = ref({ total: ref(0) as any }) -const handleDeleteTask = async (type: string) => { +const handleDeleteTask = async () => { + await message.delConfirm("是否确定结束任务", "结束任务") try { - await message.delConfirm("是否确定结束任务", "结束任务") + formData.value.status = 3 await TaskInfoApi.updateTaskInfo(formData.value) } finally { @@ -526,8 +527,21 @@ onMounted(() => { font-size: 16px; color: var(--text-color-primary, #303133); + div{ + display: flex; + + div{ + width: 15%; + text-align: right; + } + } + .merge { grid-column: span 3; + div{ + width: 6%; + text-align: right; + } } diff --git a/src/views/task/index.vue b/src/views/task/index.vue index 7aafbe7..610b0b2 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -66,7 +66,6 @@ 新增