From eaa9fe6a366b95c325bed863b790e96328d8ac3e Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Wed, 8 Jul 2026 10:41:37 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260708=20=E5=85=9A=E5=A7=94=E4=BC=9A?= =?UTF-8?q?=E3=80=81=E6=89=80=E5=8A=A1=E4=BC=9A=E8=87=AA=E5=8A=A8=E7=94=9F?= =?UTF-8?q?=E6=88=90=E5=AE=A1=E6=89=B9=E6=84=8F=E8=A7=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/BgPartymatterBPMForm.vue | 2 +- .../bqtakepulse/components/BgTakepulseBPMForm.vue | 15 +++------------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue b/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue index e3246b0..508e040 100644 --- a/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue +++ b/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue @@ -523,7 +523,7 @@ return ''; } const assistDeptName = normalizeDeptNames(deptNameText.assistDeptid); - return assistDeptName ? `请${responDeptName}牵头办理,请${assistDeptName}协办;` : `请${responDeptName}牵头办理。`; + return assistDeptName ? `同意。请${responDeptName}、${assistDeptName}反馈办理情况;` : `同意。请${responDeptName}反馈办理情况。`; } function buildDeptLeaderAssignReason() { diff --git a/src/views/bg/bqtakepulse/components/BgTakepulseBPMForm.vue b/src/views/bg/bqtakepulse/components/BgTakepulseBPMForm.vue index 2480938..e89b393 100644 --- a/src/views/bg/bqtakepulse/components/BgTakepulseBPMForm.vue +++ b/src/views/bg/bqtakepulse/components/BgTakepulseBPMForm.vue @@ -533,20 +533,11 @@ } function buildLeaderDeptReason() { - const responDeptName = normalizeDeptNames(deptNameText.responDeptid); - if (!responDeptName) { + const deptNames = [deptNameText.responDeptid, deptNameText.assistDeptid].map(normalizeDeptNames).filter(Boolean); + if (!deptNames.length) { return ''; } - const assistDeptName = normalizeDeptNames(deptNameText.assistDeptid); - const implementDeptName = normalizeDeptNames(mainForm.implementDeptid); - const reasonParts = [`请${responDeptName}牵头办理`]; - if (assistDeptName) { - reasonParts.push(`请${assistDeptName}协办`); - } - if (implementDeptName) { - reasonParts.push(`请${implementDeptName}落实`); - } - return `${reasonParts.join(',')}。`; + return `同意。请${deptNames.join('、')}反馈办理情况。`; } function buildDeptLeaderAssignReason() {