From d53ab80f73dc45fa9400bca91a8016e5c68b1fb5 Mon Sep 17 00:00:00 2001 From: wxc <191104855@qq.com> Date: Wed, 29 Apr 2026 17:35:07 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E5=B1=80=E9=95=BF?= =?UTF-8?q?=E4=BF=A1=E7=AE=B1=E6=9D=A5=E6=BA=90=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=8C=E7=9B=B4=E6=8E=A5=E5=B1=95=E7=A4=BA=E5=B1=80=E9=95=BF?= =?UTF-8?q?=E4=BF=A1=E7=AE=B1=E7=B3=BB=E7=BB=9F=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/negative/dialog.vue | 14 ++++-- src/components/negative/mailbox-dialog.vue | 53 ++++++++++++++++++++++ src/views/data/ComplaintCollection.vue | 20 ++++++-- src/views/work/Query.vue | 23 ++++++---- 4 files changed, 94 insertions(+), 16 deletions(-) create mode 100644 src/components/negative/mailbox-dialog.vue diff --git a/src/components/negative/dialog.vue b/src/components/negative/dialog.vue index eb9cf44..4b7cfe8 100644 --- a/src/components/negative/dialog.vue +++ b/src/components/negative/dialog.vue @@ -1,6 +1,7 @@ @@ -811,14 +817,20 @@ const handleWatchDetail = async (row) => { } // endregion - +const mailboxShow = ref(false) // region 办理详情 // const show = ref(false); const activeNegativeId = ref(""); function handleActionDetail(row) { - debugger - show.value = true; - activeNegativeId.value = row.negativeId; + console.log('办理详情', row) + if (row.problemSources === '局长信箱') { + mailboxShow.value = true; + activeNegativeId.value = row.originId; + } else { + show.value = true; + activeNegativeId.value = row.negativeId; + } + } // endregion diff --git a/src/views/work/Query.vue b/src/views/work/Query.vue index d6e4679..1f04659 100644 --- a/src/views/work/Query.vue +++ b/src/views/work/Query.vue @@ -812,6 +812,12 @@ ref="negativeDialogRef" /> + +
@@ -1235,8 +1241,6 @@ async function updateQuery() { await nextTick() } - - if (route.query.extensionFlag === "true") { query.value.extensionFlag = true; query.value.processingStatus = ['signing', 'processing', 'approval']; @@ -1250,10 +1254,16 @@ onMounted(() => { const show = ref(false); const activeNegativeId = ref(""); - +const mailboxShow = ref(false); function handleAction(row) { - show.value = true; - activeNegativeId.value = row.id; + if (row.problemSources === '局长信箱') { + mailboxShow.value = true; + console.log(row) + activeNegativeId.value = row.originId; + } else { + show.value = true; + activeNegativeId.value = row.id; + } } const router = useRouter(); @@ -1360,9 +1370,6 @@ function handleSpotCheck(row) { const remainingTimeFlag = ref(true); - - - const reportData = ref(null) watch(()=>reportData.value,(val)=>{ if(val){