Browse Source

完善款项结转

master
yunuo970428 2 years ago
parent
commit
af9c55f7cf
  1. 14
      anrui-buscenter/anrui-finmanage-ui/src/views/moneycarriedforward/moneycarriedforward.vue

14
anrui-buscenter/anrui-finmanage-ui/src/views/moneycarriedforward/moneycarriedforward.vue

@ -241,12 +241,16 @@ export default {
}, },
flowRecord(row) { flowRecord(row) {
this.centerDialogVisible = true this.centerDialogVisible = true
var params = { if (row.procDefId !== '' && row.procInstSid !== '') {
deployId: row.procDefId, var params = {
procInsId: row.procInstSid, deployId: row.procDefId,
token: getStorage() procInsId: row.procInstSid,
token: getStorage()
}
this.url = '/#/flow/flowRecordForBusiness?data=' + encodeURI((JSON.stringify(params)))
} else {
this.$message({ showClose: true, type: 'error', message: '该申请无审批记录' })
} }
this.url = '/#/flow/flowRecordForBusiness?data=' + encodeURI((JSON.stringify(params)))
}, },
// //
clicksearchShow() { clicksearchShow() {

Loading…
Cancel
Save