|
@@ -402,8 +402,9 @@ export default {
|
|
|
this.chooseLoadData = selectedRows.sort((a, b) => {
|
|
|
const at = new Date(a.auditTime).getTime()
|
|
|
const bt = new Date(b.auditTime).getTime()
|
|
|
- return bt - at
|
|
|
+ return at - bt
|
|
|
})
|
|
|
+ // this.chooseLoadData = selectedRows.reverse()
|
|
|
this.amountSettledChange()
|
|
|
},
|
|
|
// 返回列表
|