Ver a proveniência

审批流程入参bug修复

rongxin_test
张泽亮 há 10 meses
ascendente
cometimento
9c075ecbad
2 ficheiros alterados com 5 adições e 5 eliminações
  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 Ver ficheiro

@@ -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 Ver ficheiro

@@ -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 => {


Carregando…
Cancelar
Guardar