浏览代码

审批流程入参bug修复

rongxin_test
张泽亮 10 个月前
父节点
当前提交
9c075ecbad
共有 2 个文件被更改,包括 5 次插入5 次删除
  1. +2
    -2
      src/api/onlineHome/bankAgriculture/paymentApproval.js
  2. +3
    -3
      src/views/yinnong/bankAgriculture/paymentApproval/approvalProcess.vue

+ 2
- 2
src/api/onlineHome/bankAgriculture/paymentApproval.js 查看文件

@@ -192,9 +192,9 @@ export function addCashdetail(data) {
}

// 查询转账账户详情详细
export function getTransferProcess(auditbatchNo) {
export function getTransferProcess(id) {
return request({
url: '/yinnong/transfer/getProcessScheduleInfoNew/' + auditbatchNo,
url: '/yinnong/transfer/getProcessScheduleInfoNew/' + id,
method: 'get'
})
}


+ 3
- 3
src/views/yinnong/bankAgriculture/paymentApproval/approvalProcess.vue 查看文件

@@ -109,8 +109,8 @@ export default {
},
methods: {
//查询审批进程
getTransferProcess(auditbatchNo){
getTransferProcess(auditbatchNo).then(res => {
getTransferProcess(id){
getTransferProcess(id).then(res => {
this.processList = res.data[auditbatchNo]
})
},
@@ -119,7 +119,7 @@ export default {
this.form = response.data;
this.processList = {}
if(this.form.auditStatus != 0){
this.getTransferProcess(this.$route.query.auditbatchNo);
this.getTransferProcess(id);
}
if(this.form.approvalMode == 1){
selectApprovalByTemplateId(this.form.approvalTemplateId).then(rs => {


正在加载...
取消
保存