diff --git a/src/views/login/login.vue b/src/views/login/login.vue index 8fefd41..afce4c0 100644 --- a/src/views/login/login.vue +++ b/src/views/login/login.vue @@ -224,6 +224,8 @@ sourceSid: 'd936f1ba-03c3-11ec-bf08-48452053aa33', // wms 资源sid }, loginForm: { + // userName: '18033761989', + // password: 'Yxt123', userName: '', password: '', verifyCode: "", diff --git a/src/views/storage/totalStatus/totalInventory/totalInventory.vue b/src/views/storage/totalStatus/totalInventory/totalInventory.vue index f549037..b2f22ac 100644 --- a/src/views/storage/totalStatus/totalInventory/totalInventory.vue +++ b/src/views/storage/totalStatus/totalInventory/totalInventory.vue @@ -56,6 +56,10 @@
库存总量列表
+
库存总数量:{{map.totalUseCount}}
+
库存总金额:{{map.useCountMoney}}
+
在途总数量:{{map.totalInTransitSummary}}
+
在途总金额:{{map.inTransitSummaryMoney}}
@@ -87,8 +91,8 @@ - + @@ -112,10 +116,10 @@ - + - + @@ -267,6 +271,7 @@ viewState: 1, // 1、列表 2、新增 3、编辑 4、查看 tableKey: 0, list: [], + map: {}, sids: [], // 用于导出的时候保存已选择的SIDs listLoading: false, // 翻页 @@ -420,9 +425,11 @@ this.listLoading = false if (response.success) { this.list = response.data.records + this.map = response.data.map this.listQuery.total = response.data.total } else { this.list = [] + this.map = {} this.listQuery.total = 0 } })