From b5f118855c71795d776eb127ad89e7d5f839b5c9 Mon Sep 17 00:00:00 2001 From: liuxi <357439530@qq.com> Date: Sun, 23 Feb 2025 17:02:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=91=E8=B5=B7=E7=AD=BE?= =?UTF-8?q?=E5=AD=97bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mediation-page/components/singleofficeDeliveryPopover.vue | 1 + src/pages/mediation-page/components/singleofficeWritPopover.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/pages/mediation-page/components/singleofficeDeliveryPopover.vue b/src/pages/mediation-page/components/singleofficeDeliveryPopover.vue index 1d2640f..880e046 100644 --- a/src/pages/mediation-page/components/singleofficeDeliveryPopover.vue +++ b/src/pages/mediation-page/components/singleofficeDeliveryPopover.vue @@ -62,6 +62,7 @@ import api from "@/services/caseManagement"; api.getCaseGenerateList(dataJson).then(res => { if (!res.code) { this.officeOptions = res + this.officeOptions = this.officeOptions.filter(item=>{return item.type != 'VERIFY_IDD'}) } }) }, diff --git a/src/pages/mediation-page/components/singleofficeWritPopover.vue b/src/pages/mediation-page/components/singleofficeWritPopover.vue index 8136ac9..2b2adf4 100644 --- a/src/pages/mediation-page/components/singleofficeWritPopover.vue +++ b/src/pages/mediation-page/components/singleofficeWritPopover.vue @@ -98,6 +98,7 @@ import api from "@/services/caseManagement"; api.getCaseGenerateList(dataJson).then(res => { if (!res.code) { this.officeOptions = res + this.officeOptions = this.officeOptions.filter(item=>{return item.type != 'VERIFY_IDD'}) } }) },