diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue index d53300cf98..fa0acac276 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue @@ -127,7 +127,11 @@
开户行
- + + + + +
银行账号
@@ -171,6 +175,7 @@ export default { payment_list: [], receiveCompany_list: [], receivingAccount_list: [], + bank_list: [], formobj: { sid: '', // sid costTitleKey: '', // 款项名称,数据字典 @@ -219,6 +224,11 @@ export default { this.payment_list = res.data } }) + typeValues({ type: 'bank' }).then((res) => { + if (res.success) { + this.bank_list = res.data + } + }) }, showAdd(useOrgSid) { this.viewTitle = '【新增】付款信息' diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentInformation/paymentInformation.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentInformation/paymentInformation.vue index 3c2428cc54..43cf510e5d 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentInformation/paymentInformation.vue +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentInformation/paymentInformation.vue @@ -72,7 +72,11 @@
开户行
- + + + + +
银行账号
@@ -115,6 +119,7 @@ export default { data() { return { dialogVisible: false, + bank_list: [], businessType_list: [], formobj: { companyCode: '', // 单位编码 @@ -189,6 +194,11 @@ export default { this.businessType_list = res.data } }) + typeValues({ type: 'bank' }).then((res) => { + if (res.success) { + this.bank_list = res.data + } + }) }, // 搜索条件效果 clicksearchShow() { diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue index d53300cf98..fa0acac276 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue @@ -127,7 +127,11 @@
开户行
- + + + + +
银行账号
@@ -171,6 +175,7 @@ export default { payment_list: [], receiveCompany_list: [], receivingAccount_list: [], + bank_list: [], formobj: { sid: '', // sid costTitleKey: '', // 款项名称,数据字典 @@ -219,6 +224,11 @@ export default { this.payment_list = res.data } }) + typeValues({ type: 'bank' }).then((res) => { + if (res.success) { + this.bank_list = res.data + } + }) }, showAdd(useOrgSid) { this.viewTitle = '【新增】付款信息' diff --git a/yxt-as-ui/src/views/storage/oldPartsInAndOutStorage/index.vue b/yxt-as-ui/src/views/storage/oldPartsInAndOutStorage/index.vue index 6a0f20bc84..9db9aa998a 100644 --- a/yxt-as-ui/src/views/storage/oldPartsInAndOutStorage/index.vue +++ b/yxt-as-ui/src/views/storage/oldPartsInAndOutStorage/index.vue @@ -343,9 +343,13 @@ export default { const choose = this.warehouseList.filter((item) => item.sid === val) if (choose !== null && choose.length > 0) { this.queryParams.params.warehouseName = choose[0].warehouseName + this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' this.getWarehouseAreaList(choose[0].sid) } else { this.queryParams.params.warehouseName = '' + this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' } }, getWarehouseAreaList(sid) { @@ -359,9 +363,11 @@ export default { const choose = this.warehouseAreaList.filter((item) => item.sid === val) if (choose !== null && choose.length > 0) { this.queryParams.params.warehouseAreaName = choose[0].areaName + this.queryParams.params.warehouseRackCode = '' this.getWareHouseCodeList(choose[0].sid) } else { this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' } }, getWareHouseCodeList(sid) { diff --git a/yxt-as-ui/src/views/storage/oldPartsInvertory/index.vue b/yxt-as-ui/src/views/storage/oldPartsInvertory/index.vue index f8a4e60e7b..c3dc4eb099 100644 --- a/yxt-as-ui/src/views/storage/oldPartsInvertory/index.vue +++ b/yxt-as-ui/src/views/storage/oldPartsInvertory/index.vue @@ -340,9 +340,13 @@ export default { const choose = this.warehouseList.filter((item) => item.sid === val) if (choose !== null && choose.length > 0) { this.queryParams.params.warehouseName = choose[0].warehouseName + this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' this.getWarehouseAreaList(choose[0].sid) } else { this.queryParams.params.warehouseName = '' + this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' } }, getWarehouseAreaList(sid) { @@ -356,9 +360,11 @@ export default { const choose = this.warehouseAreaList.filter((item) => item.sid === val) if (choose !== null && choose.length > 0) { this.queryParams.params.warehouseAreaName = choose[0].areaName + this.queryParams.params.warehouseRackCode = '' this.getWareHouseCodeList(choose[0].sid) } else { this.queryParams.params.warehouseAreaName = '' + this.queryParams.params.warehouseRackCode = '' } }, getWareHouseCodeList(sid) {