Browse Source

Merge branch 'dev' of http://git.ycjcjy.com/SpaceOfCheng/admin into dev

许成详 6 years ago
parent
commit
b7dd3ef315
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/pages/system/newOrder/newOrderList/index.vue

+ 1
- 1
src/pages/system/newOrder/newOrderList/index.vue View File

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