From 52bbb819f0416b9247cbc54e73a7134f6486c688 Mon Sep 17 00:00:00 2001 From: guoxing <1369478551@qq.com> Date: Mon, 2 Sep 2024 10:26:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=97=A7=E4=BB=B6\=E8=B0=83?= =?UTF-8?q?=E6=8B=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yxt-as-ui/src/api/storage/allocation.js | 12 +- yxt-as-ui/src/api/storage/oldPartsRecovery.js | 10 +- .../src/api/storage/oldpPartStocktaking.js | 58 +-- .../api/storage/oldpPartStocktakingLoss.js | 96 ++++ .../api/storage/oldpPartStocktakingSurplus.js | 94 ++++ yxt-as-ui/src/router/index.js | 18 + .../storage/allocation/allocationAdd.vue | 106 ++++- .../storage/oldpPartStocktaking/index.vue | 54 ++- .../oldpPartStocktakingEditReport.vue | 118 +++-- .../oldpPartStocktakingReportDetail.vue | 65 +-- .../storage/oldpPartStocktakingLoss/index.vue | 330 +++++++++++++ .../oldpPartStocktakingLossAdd.vue | 383 +++++++++++++++ .../oldpPartStocktakingLossInfo.vue | 163 +++++++ .../oldpPartStocktakingSurplus/index.vue | 327 +++++++++++++ .../oldpPartStocktakingSurplusAdd.vue | 437 ++++++++++++++++++ .../oldpPartStocktakingSurplusInfo.vue | 162 +++++++ .../src/views/storage/stocktaking/index.vue | 14 +- 17 files changed, 2301 insertions(+), 146 deletions(-) create mode 100644 yxt-as-ui/src/api/storage/oldpPartStocktakingLoss.js create mode 100644 yxt-as-ui/src/api/storage/oldpPartStocktakingSurplus.js create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/index.vue create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossAdd.vue create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossInfo.vue create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/index.vue create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusAdd.vue create mode 100644 yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusInfo.vue diff --git a/yxt-as-ui/src/api/storage/allocation.js b/yxt-as-ui/src/api/storage/allocation.js index 1c28f2ff1a..96f6f65735 100644 --- a/yxt-as-ui/src/api/storage/allocation.js +++ b/yxt-as-ui/src/api/storage/allocation.js @@ -5,7 +5,7 @@ export default { // 查询分页列表 listPage: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/listPage', method: 'post', data: params, @@ -17,7 +17,7 @@ export default { deleteBySids: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/delBySids', method: 'DELETE', data: data, @@ -30,7 +30,7 @@ export default { // 保存物流信息 saveLogisticsInfo: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/saveLogisticsInfo', method: 'post', data: data, @@ -42,7 +42,7 @@ export default { // 新增、保存 save: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/save', method: 'post', data: data, @@ -55,7 +55,7 @@ export default { // 初始化 init: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/fetchDetailsBySid/' + data, method: 'get' }); @@ -64,7 +64,7 @@ export default { // 调拨 allocation: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/allocation', method: 'post', data: data, diff --git a/yxt-as-ui/src/api/storage/oldPartsRecovery.js b/yxt-as-ui/src/api/storage/oldPartsRecovery.js index 318e158d60..a26ab8cc6a 100644 --- a/yxt-as-ui/src/api/storage/oldPartsRecovery.js +++ b/yxt-as-ui/src/api/storage/oldPartsRecovery.js @@ -5,7 +5,7 @@ export default { // 查询分页列表 listPage: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/as/v1/AsBusrepairBill/pageBillList', method: 'post', data: params, @@ -18,7 +18,7 @@ export default { // 获取维修工单详情 getOneByBillNo: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/as/v1/AsBusrepairBill/getOneByBillNo?sid=' + data, method: 'get', }); @@ -27,7 +27,7 @@ export default { // 保存旧件回收登记 saveorUpdateOldRegister: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/WmsOldRegister/saveorUpdateOldRegister', method: 'post', data: data, @@ -40,7 +40,7 @@ export default { // 获取旧件入库详情 init: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/WmsOldInventory/getInit?sid=' + data, method: 'get', }); @@ -49,7 +49,7 @@ export default { // 保存旧件入库 saveInventory: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", url: '/wms/apiadmin/WmsOldInventory/saveInventory', method: 'post', data: data, diff --git a/yxt-as-ui/src/api/storage/oldpPartStocktaking.js b/yxt-as-ui/src/api/storage/oldpPartStocktaking.js index c3a62b12d8..a07b5e95b7 100644 --- a/yxt-as-ui/src/api/storage/oldpPartStocktaking.js +++ b/yxt-as-ui/src/api/storage/oldpPartStocktaking.js @@ -5,8 +5,8 @@ export default { // 生成盘点点 createBill: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/save', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/save', method: 'post', data: data, headers: { @@ -18,8 +18,8 @@ export default { // 查询分页列表 listPage: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/listPage', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/listPage', method: 'post', data: params, headers: { @@ -31,8 +31,8 @@ export default { // 生成盘点报告 billCreateReport: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/createReport', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/createReport', method: 'post', params: data, headers: { @@ -44,8 +44,8 @@ export default { // 盘点单详情 billDetail: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/detailGoodPageList', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/detailGoodPageList', method: 'post', data: params, headers: { @@ -57,8 +57,8 @@ export default { // 盘库列表 billStocktak: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/detailRackPageList', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/detailRackPageList', method: 'post', data: params, headers: { @@ -70,8 +70,8 @@ export default { // 库位盘点明细列表 billRackCodeDetail: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/detailRackGoodPageList', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/detailRackGoodPageList', method: 'post', data: params, headers: { @@ -83,30 +83,35 @@ export default { // 初始化盘库报告 init: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/fetchDetailsBySid/' + data, - method: 'get' + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/viewReport', + method: 'post', + params: data, + headers: { + 'Content-Type': 'application/json' + } }); }, // 保存盘点报告 saveReport: function(data) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/saveReport', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/saveReport', method: 'post', - data: data, + params: data, headers: { 'Content-Type': 'application/json' } }); }, - downloadExcel: function() { + downloadExcel: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/downloadExcel', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/downloadExcel', method: 'post', + params: params, responseType: 'blob', // 表明返回服务器返回的数据类型 headers: { 'Content-Type': 'application/json' @@ -114,15 +119,16 @@ export default { }) }, - downloadPDF: function() { + downloadPDF: function(params) { return request({ - baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", - url: '/wms/v1/oldpPartStocktaking/downloadPdf', + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorycheckbill/createPdf', method: 'post', - responseType: 'blob', // 表明返回服务器返回的数据类型 + params: params, headers: { 'Content-Type': 'application/json' - } + }, + }) }, diff --git a/yxt-as-ui/src/api/storage/oldpPartStocktakingLoss.js b/yxt-as-ui/src/api/storage/oldpPartStocktakingLoss.js new file mode 100644 index 0000000000..22eaad6558 --- /dev/null +++ b/yxt-as-ui/src/api/storage/oldpPartStocktakingLoss.js @@ -0,0 +1,96 @@ +import request from '@/utils/request' + +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/listPage', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + deleteBySids: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/delBySids', + method: 'DELETE', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + + // 盘点单详情 + fetchDetailsBySid: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/fetchDetailsBySid/' + params, + method: 'get', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + + // 根据部门sid 获取所有盘点单号 + getSourceBillNoBySid: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/getSourceBillNoBySid', + method: 'post', + params: data + }) + }, + + // 根据盘点单sid 获取商品 + sourceBillBySid: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/sourceBillBySid/' + params, + method: 'get', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + + // 保存盘盈入库 + save: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/save', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }); + }, + + // 提交盘盈入库 + submit: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventoryloss/submit', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }); + }, + + +} diff --git a/yxt-as-ui/src/api/storage/oldpPartStocktakingSurplus.js b/yxt-as-ui/src/api/storage/oldpPartStocktakingSurplus.js new file mode 100644 index 0000000000..2400f58ab7 --- /dev/null +++ b/yxt-as-ui/src/api/storage/oldpPartStocktakingSurplus.js @@ -0,0 +1,94 @@ +import request from '@/utils/request' + +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/listPage', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + deleteBySids: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/delBySids', + method: 'DELETE', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + // 盘点单详情 + fetchDetailsBySid: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/fetchDetailsBySid/' + params, + method: 'get', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + // 根据部门sid 获取所有盘点单号 + getSourceBillNoBySid: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/getSourceBillNoBySid', + method: 'post', + params: data + }) + }, + + // 根据盘点单sid 获取商品 + sourceBillBySid: function(params) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/sourceBillBySid/' + params, + method: 'get', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + + + // 保存盘盈入库 + save: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/save', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }); + }, + + // 提交盘盈入库 + submit: function(data) { + return request({ + // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default", + url: '/wms/v1/wmsinventorysurplus/submit', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }); + }, + + +} diff --git a/yxt-as-ui/src/router/index.js b/yxt-as-ui/src/router/index.js index 39bb3d8fff..92b1efc266 100644 --- a/yxt-as-ui/src/router/index.js +++ b/yxt-as-ui/src/router/index.js @@ -576,6 +576,24 @@ export const constantRoutes = [{ noCache: true } }, + { + path: '/oldpPartStocktakingSurplus/index', + component: () => import('@/views/storage/oldpPartStocktakingSurplus/index'), + name: 'OldpPartStocktakingSurplus', + meta: { + title: '旧件盘盈入库', + noCache: true + } + }, + { + path: '/oldpPartStocktakingLoss/index', + component: () => import('@/views/storage/oldpPartStocktakingLoss/index'), + name: 'OldpPartStocktakingLoss', + meta: { + title: '旧件盘亏出库', + noCache: true + } + }, { path: '/storageage/storageage', component: () => import('@/views/storage/storageage/storageage'), diff --git a/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue b/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue index 10847cae95..12e8dd98a3 100644 --- a/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue +++ b/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue @@ -50,30 +50,32 @@ - +
调出站
{{ formobj.outPlatName }}
-
调入站
- +
* 调入分公司
+
- - + +
* 调入站点
+ +
-
经办人
- * 经办人 + @@ -236,7 +238,23 @@ "remarks": "", "wmsInventoryAllocateBillDetailNewList": [] }, - rules: {}, + rules: { + inOrgName: [{ + required: true, + message: '调入分公司不能为空', + trigger: 'change' + }], + inPlatName: [{ + required: true, + message: '调入站点不能为空', + trigger: 'change' + }], + confirmName: [{ + required: true, + message: '经办人不能为空', + trigger: 'change' + }], + }, orgList: [], deptList: [], operatorNameList: [], @@ -437,7 +455,7 @@ "inWarehouseRackCode": '', "count": 0, "amount": 0, - "transferPrice": 0, + "transferPrice": e.taxPrice, "markupRatio": 0, "goodsSpuName": e.goodsSpuName, "goodsSkuCode": e.goodsSkuCode, @@ -503,6 +521,30 @@ console.log("saveOrUpdate", this.formobj); this.$refs['form_obj'].validate((valid) => { if (valid) { + + if (this.formobj.wmsInventoryAllocateBillDetailNewList.length == 0) { + this.$message({ + type: "warning", + showClose: true, + message: '调拨商品不能为空' + }) + return + } + + for (var i = 0; i < this.formobj.wmsInventoryAllocateBillDetailNewList.length; i++) { + var item = this.formobj.wmsInventoryAllocateBillDetailNewList[i] + + if (Number(item.count) == 0) { + this.$message({ + type: "warning", + showClose: true, + message: '调拨数量不能为空或0' + }) + return + } + + } + this.submitdisabled = true req.allocation(this.formobj).then((res) => { if (res.success) { @@ -561,7 +603,7 @@ diff --git a/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossAdd.vue b/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossAdd.vue new file mode 100644 index 0000000000..471d1960a6 --- /dev/null +++ b/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossAdd.vue @@ -0,0 +1,383 @@ + + + + diff --git a/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossInfo.vue b/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossInfo.vue new file mode 100644 index 0000000000..5772ec7ced --- /dev/null +++ b/yxt-as-ui/src/views/storage/oldpPartStocktakingLoss/oldpPartStocktakingLossInfo.vue @@ -0,0 +1,163 @@ + + + + diff --git a/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/index.vue b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/index.vue new file mode 100644 index 0000000000..4ce4a2fdfb --- /dev/null +++ b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/index.vue @@ -0,0 +1,327 @@ + + + + diff --git a/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusAdd.vue b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusAdd.vue new file mode 100644 index 0000000000..38cd122427 --- /dev/null +++ b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusAdd.vue @@ -0,0 +1,437 @@ + + + + diff --git a/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusInfo.vue b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusInfo.vue new file mode 100644 index 0000000000..ea582bfd5b --- /dev/null +++ b/yxt-as-ui/src/views/storage/oldpPartStocktakingSurplus/oldpPartStocktakingSurplusInfo.vue @@ -0,0 +1,162 @@ + + + + diff --git a/yxt-as-ui/src/views/storage/stocktaking/index.vue b/yxt-as-ui/src/views/storage/stocktaking/index.vue index 4b003498b0..a677f0dfc9 100644 --- a/yxt-as-ui/src/views/storage/stocktaking/index.vue +++ b/yxt-as-ui/src/views/storage/stocktaking/index.vue @@ -323,7 +323,8 @@ "createEndTime": "", "checkState": "", "createByName": "", - "superviseName": "" + "superviseName": "", + "warehouseTypeKey": "01" } }, sids: [], @@ -360,7 +361,9 @@ superviseName: '', superviseSid: '', remarks: "", - dataList: [] + dataList: [], + "warehouseTypeKey": "01", + "warehouseTypeValue": "配件库" }, financeList: [], rules: { @@ -386,6 +389,7 @@ "warehouseAreaName": "", "warehouseRackSid": "", "warehouseRackCode": "", + "warehouseTypeKey": "01", } }, warehouseList: [], @@ -490,6 +494,7 @@ "warehouseAreaName": "", "warehouseRackSid": "", "warehouseRackCode": "", + "warehouseTypeKey": "01", } } this.seleRack() @@ -542,6 +547,7 @@ "warehouseAreaName": "", "warehouseRackSid": "", "warehouseRackCode": "", + "warehouseTypeKey": "01", } } this.dialogVisible2 = false @@ -558,6 +564,7 @@ "warehouseAreaName": "", "warehouseRackSid": "", "warehouseRackCode": "", + "warehouseTypeKey": "01", } } this.dialogVisible2 = false @@ -713,7 +720,8 @@ "createEndTime": "", "checkState": "", "createByName": "", - "superviseName": "" + "superviseName": "", + "warehouseTypeKey": "01", } } this.loadList()