领料工程,领料单位

This commit is contained in:
hongchao 2025-06-18 17:03:44 +08:00
parent 839bc30db9
commit 245e3faef9
1 changed files with 4 additions and 4 deletions

View File

@ -829,17 +829,17 @@ export default {
/** 租赁单位和工程-下拉选 */ /** 租赁单位和工程-下拉选 */
projectInfoList() { projectInfoList() {
if (!this.isEdit) { if (!this.isEdit) {
getListUnite({ projectId: null }).then(response => { getListUnite({ projectId: null,enableFilter:true }).then(response => {
this.uniteList = response.data this.uniteList = response.data
}) })
getListProject({ unitId: null }).then(response => { getListProject({ unitId: null,enableFilter:true }).then(response => {
this.projectList = response.data this.projectList = response.data
}) })
} else { } else {
getListUnite({ projectId: null }).then(response => { getListUnite({ projectId: null,enableFilter:true }).then(response => {
this.uniteList = response.data this.uniteList = response.data
}) })
getListProject({ unitId: this.maForm.unitId }).then(response => { getListProject({ unitId: this.maForm.unitId,enableFilter:true }).then(response => {
this.projectList = response.data this.projectList = response.data
}) })
} }