|
@@ -148,7 +148,7 @@ export default {
|
148
|
148
|
})
|
149
|
149
|
this.interval = setInterval(() => {
|
150
|
150
|
const now = (new Date()).valueOf()
|
151
|
|
- this.leftTimes = this.list.reduce((acc, it) => {
|
|
151
|
+ this.leftTimes = this.currentList.reduce((acc, it) => {
|
152
|
152
|
const showDT = now - ((new Date(it.CreateDate)).valueOf())
|
153
|
153
|
return { ...acc, [`${it.OrdersId}`]: formatTimeBySeconds(showDT) }
|
154
|
154
|
}, {})
|