From 455c0ff09237edc74ffaa744ef387ead6c7b5944 Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Sat, 27 Sep 2025 16:05:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B4=E8=BD=AC=E5=AE=A1=E6=A0=B8=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E8=BF=87=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../direct-rotation-apply/index.vue | 1 + .../business/businessHandling/directApply.vue | 29 ++++++++++++++----- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/src/views/business-examine/direct-rotation-apply/index.vue b/src/views/business-examine/direct-rotation-apply/index.vue index d078d732..7f60089f 100644 --- a/src/views/business-examine/direct-rotation-apply/index.vue +++ b/src/views/business-examine/direct-rotation-apply/index.vue @@ -133,6 +133,7 @@ export default { tableColumns: [ { label: '申请时间', prop: 'createTime', showToolTip: true, width: '100' }, { label: '申请人', prop: 'leaseMan', showToolTip: true, width: '80' }, + { label: '直转单号', prop: 'code', showToolTip: true }, { label: '转出单位', prop: 'backUnitName', showToolTip: false }, { label: '转出工程', prop: 'backProName', showToolTip: false }, { label: '转入单位', prop: 'leaseUnitName', showToolTip: false }, diff --git a/src/views/business/businessHandling/directApply.vue b/src/views/business/businessHandling/directApply.vue index 0ec32864..a5940e24 100644 --- a/src/views/business/businessHandling/directApply.vue +++ b/src/views/business/businessHandling/directApply.vue @@ -785,7 +785,7 @@ export default { }, uniteChange(val) { setTimeout(() => { - getListProject({ unitId: this.maForm.backUnitId }).then(response => { + getListProject({ unitId: this.maForm.backUnitId,enableFilter: true }).then(response => { this.projectList = response.data this.maForm.backProId = null }) @@ -793,7 +793,7 @@ export default { }, projectChange(val) { setTimeout(() => { - getListUnite({}).then(response => { + getListUnite({enableFilter: true}).then(response => { this.uniteList = response.data }) this.getAgreementId() @@ -817,23 +817,38 @@ export default { }, /** 租赁单位和工程-下拉选 */ projectInfoList() { + console.log("kkkkkkkkkkk",this.isEdit) if (!this.isEdit) { - getListUnite({ projectId: null }).then(response => { + //转出单位 + getListUnite({ projectId: null,enableFilter: true }).then(response => { this.uniteList = response.data + }) + //转出工程 + getListProject({ unitId: null,enableFilter: true }).then(response => { + this.projectList = response.data + }) + //转入单位 + getListUnite({ projectId: null }).then(response => { this.lessUniteList = response.data }) + //转入工程 getListProject({ unitId: null }).then(response => { - this.projectList = response.data this.leaseProjectList = response.data }) } else { - getListUnite({ projectId: null }).then(response => { + //转出单位 + getListUnite({ projectId: null,enableFilter: true }).then(response => { this.uniteList = response.data - this.lessUniteList = response.data }) - getListProject({ unitId: this.maForm.backUnitId }).then(response => { + //转出工程 + getListProject({ unitId: this.maForm.backUnitId,enableFilter: true }).then(response => { this.projectList = response.data }) + //转入单位 + getListUnite({ projectId: null }).then(response => { + this.lessUniteList = response.data + }) + //转入工程 getListProject({ unitId: this.maForm.leaseUnitId }).then(response => { this.leaseProjectList = response.data })