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'}) } }) },