|
@@ -198,13 +198,13 @@ function header(props) {
|
198
|
198
|
setVisible(false)
|
199
|
199
|
setRefundVisible(false)
|
200
|
200
|
}
|
201
|
|
- const reject = (row) => {
|
|
201
|
+ const reject = row => {
|
202
|
202
|
setVisible(true)
|
203
|
203
|
setRow(row)
|
204
|
204
|
}
|
205
|
205
|
const refund = (row) => {
|
206
|
206
|
setRefundVisible(true)
|
207
|
|
- console.log(row,'row')
|
|
207
|
+ console.log(row, 'row')
|
208
|
208
|
setRow(row)
|
209
|
209
|
}
|
210
|
210
|
|
|
@@ -212,7 +212,7 @@ function header(props) {
|
212
|
212
|
router.push({
|
213
|
213
|
pathname: '/fundManagement/AccountDetail',
|
214
|
214
|
query: {
|
215
|
|
- id: row.orgId
|
|
215
|
+ id: row.orgId,
|
216
|
216
|
},
|
217
|
217
|
});
|
218
|
218
|
}
|