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