diff --git a/src/pages/Setup.vue b/src/pages/Setup.vue index ab928cf..21a03ad 100644 --- a/src/pages/Setup.vue +++ b/src/pages/Setup.vue @@ -46,7 +46,7 @@ export default { baseUrl: this.$store.getters.baseUrl, setJxtTime: this.$store.getters.setJxtTime / 1000, setTime: this.$store.getters.setTime / 1000, - options: [{value: 1, label: '拣选台'}, {value: 2, label: '仓储监控'}], + options: [{value: '1', label: '拣选台'}, {value: '2', label: '仓储监控'}], value: this.$store.getters.pageNo } }, diff --git a/src/pages/modules/index2.vue b/src/pages/modules/index2.vue index 8804848..c4f2a1d 100644 --- a/src/pages/modules/index2.vue +++ b/src/pages/modules/index2.vue @@ -43,27 +43,27 @@
入库
-
+

总数量:{{ lx_task[0].total }}

箱数:{{ lx_task[0].box }}

-

耗时:{{ lx_task[0].time }}

+

时间评估:{{ lx_task[0].time }}

出库
-
+

总数量:{{ lx_task[1].total }}

箱数:{{ lx_task[1].box }}

-

耗时:{{ lx_task[1].time }}

+

时间评估:{{ lx_task[1].time }}

@@ -150,27 +150,27 @@
入库
-
+

总数量:{{ tp_task[0].total }}

箱数:{{ tp_task[0].box }}

-

耗时:{{ tp_task[0].time }}

+

时间评估:{{ tp_task[0].time }}

出库
-
+

总数量:{{ tp_task[1].total }}

箱数:{{ tp_task[1].box }}

-

耗时:{{ tp_task[1].time }}

+

时间评估:{{ tp_task[1].time }}

diff --git a/src/vuex/modules/com.js b/src/vuex/modules/com.js index 925fefc..46a3f32 100644 --- a/src/vuex/modules/com.js +++ b/src/vuex/modules/com.js @@ -9,7 +9,7 @@ const state = { baseUrl: getStore('baseUrl') || baseUrl, setTime: getStore('setTime') || 15000, setJxtTime: getStore('setJxtTime') || 3000, - pageNo: getStore('pageNo') || 1 + pageNo: getStore('pageNo') || '1' } const actions = {