From e8e24a13272d4f6a7710a2bd41d95d4d263dae7c Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Thu, 16 Apr 2026 11:16:57 +0800 Subject: [PATCH 1/8] =?UTF-8?q?fix:=E7=A7=BB=E5=8A=A8=E7=9D=A3=E5=AF=9FAPP?= =?UTF-8?q?=E5=BD=95=E5=85=A5=E5=AE=A1=E6=A0=B8=E6=95=B0=E6=8D=AE=09?= =?UTF-8?q?=EF=BC=8C=E5=A2=9E=E5=8A=A0=E2=80=9C=E6=9F=A5=E5=90=A6=E3=80=81?= =?UTF-8?q?=E6=9F=A5=E5=AE=9E=E2=80=9D=E7=AD=89=E5=8A=9F=E8=83=BD--?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9F=A5=E5=AE=9E=E4=B8=BA=20=E4=B8=8B?= =?UTF-8?q?=E5=8F=91=EF=BC=8C=E6=9F=A5=E5=90=A6tab=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=9C=89=E4=B8=8B=E5=8F=91=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mobileSupervise/TaskProblem.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/mobileSupervise/TaskProblem.vue b/src/views/mobileSupervise/TaskProblem.vue index 78a334d..33d4f0d 100644 --- a/src/views/mobileSupervise/TaskProblem.vue +++ b/src/views/mobileSupervise/TaskProblem.vue @@ -57,7 +57,7 @@ - +
@@ -104,11 +104,11 @@ 编辑 查实 + >下发 Date: Thu, 16 Apr 2026 11:46:56 +0800 Subject: [PATCH 2/8] =?UTF-8?q?feat:=E6=89=80=E6=9C=89=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E6=9D=A5=E6=BA=90=E9=83=BD=E5=8F=AF=E4=BB=A5=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E4=B8=93=E9=A1=B9=E7=9D=A3=E5=AF=9F=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/negative/add.vue | 26 ++++++++++----- src/components/negative/description.vue | 4 +-- src/views/jwpy/query_110jcj.vue | 22 +++++++++---- src/views/jwpy/query_122jcj.vue | 22 +++++++++---- src/views/jwpy/query_cjglfw.vue | 22 +++++++++---- src/views/jwpy/query_jwpy_total.vue | 22 +++++++++---- src/views/jwpy/query_rjckfw.vue | 22 +++++++++---- src/views/jwpy/query_zfba.vue | 22 +++++++++---- src/views/mobileSupervise/Query_xcdc.vue | 22 +++++++++---- src/views/work/Query.vue | 42 ++++++++++++++---------- 10 files changed, 149 insertions(+), 77 deletions(-) diff --git a/src/components/negative/add.vue b/src/components/negative/add.vue index 3400947..626cd44 100644 --- a/src/components/negative/add.vue +++ b/src/components/negative/add.vue @@ -68,22 +68,17 @@ { + if (Array.isArray(form.value.specialSupervision)) { + return form.value.specialSupervision.filter(v => v).join(','); + } + return form.value.specialSupervision; }); watch( @@ -636,6 +639,10 @@ async function handleAddNegative() { form.value.thingFiles = form.value.thingFiles.filter( (item) => item.filePath ); + // 专项督察多选转逗号分隔字符串 + if (Array.isArray(form.value.specialSupervision)) { + form.value.specialSupervision = form.value.specialSupervision.filter(v => v).join(','); + } loading.value = true; try { await addNegative(form.value); @@ -649,6 +656,7 @@ async function handleAddNegative() { hostLevel: HostLevel.THREE, timeLimit: TimeLimit.WORK_137, approvalFlow: ApprovalFlow.SECOND, + specialSupervision: [], }; reportData.value=null; feedback.msgSuccess("下发成功"); diff --git a/src/components/negative/description.vue b/src/components/negative/description.vue index dcbdd2d..3052973 100644 --- a/src/components/negative/description.vue +++ b/src/components/negative/description.vue @@ -40,7 +40,7 @@
- {{ getDictLable(dict.specialSupervision, negative.specialSupervision) }} + {{ getInvolveProblem(negative.specialSupervision, dict.specialSupervision) }}
@@ -82,7 +82,7 @@