yuantianjiao hace 6 años
padre
commit
78572caa3c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/pages/system/newOrder/newOrderList/index.vue

+ 1
- 1
src/pages/system/newOrder/newOrderList/index.vue Ver fichero

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