|
@@ -121,8 +121,9 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
return
|
|
|
- }
|
|
|
- if (row.cashStatus === '1') {
|
|
|
+ } else if (type === 'reApply') {
|
|
|
+ this.handleReapply(row.id)
|
|
|
+ } else if (row.cashStatus === '1') {
|
|
|
this.$router.push({
|
|
|
name: 'FinancialManagementAddAccounts',
|
|
|
params: { id: 'children' },
|
|
@@ -151,10 +152,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
- if (type === 'reApply') {
|
|
|
- this.handleReapply(row.id)
|
|
|
- }
|
|
|
},
|
|
|
async handleReapply(id) {
|
|
|
const res = await reApplyPayment(id)
|