yuantianjiao před 6 roky
rodič
revize
78572caa3c

+ 1
- 1
src/pages/system/newOrder/newOrderList/index.vue Zobrazit soubor

@@ -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
           }, {})