From 245e3faef9cff79a97c0fb081491f067aa1bb048 Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Wed, 18 Jun 2025 17:03:44 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E6=96=99=E5=B7=A5=E7=A8=8B,=E9=A2=86?= =?UTF-8?q?=E6=96=99=E5=8D=95=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/businessHandling/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/business/businessHandling/index.vue b/src/views/business/businessHandling/index.vue index 734c7b6e..14694f03 100644 --- a/src/views/business/businessHandling/index.vue +++ b/src/views/business/businessHandling/index.vue @@ -829,17 +829,17 @@ export default { /** 租赁单位和工程-下拉选 */ projectInfoList() { if (!this.isEdit) { - getListUnite({ projectId: null }).then(response => { + getListUnite({ projectId: null,enableFilter:true }).then(response => { this.uniteList = response.data }) - getListProject({ unitId: null }).then(response => { + getListProject({ unitId: null,enableFilter:true }).then(response => { this.projectList = response.data }) } else { - getListUnite({ projectId: null }).then(response => { + getListUnite({ projectId: null,enableFilter:true }).then(response => { this.uniteList = response.data }) - getListProject({ unitId: this.maForm.unitId }).then(response => { + getListProject({ unitId: this.maForm.unitId,enableFilter:true }).then(response => { this.projectList = response.data }) }