diff --git a/pages.json b/pages.json index 6108a5e..9ec5ff1 100644 --- a/pages.json +++ b/pages.json @@ -35,7 +35,15 @@ "navigationStyle": "custom" } - } + } + ,{ + "path" : "pages/management/alloc-maintenance_new", + "style" : + { + "navigationStyle": "custom" + } + + } ,{ "path" : "pages/management/receive-confirm", "style" : diff --git a/pages/home/home.vue b/pages/home/home.vue index 91d4181..f607216 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -78,7 +78,7 @@ toPage (e) { let url = '' if (e.ywlx === 'DB') { - url = '/pages/management/alloc-maintenance' + url = '/pages/management/alloc-maintenance_new' } else if (e.ywlx === 'SH') { url = '/pages/management/receive-confirm_new' } else { diff --git a/pages/management/alloc-maintenance_new.vue b/pages/management/alloc-maintenance_new.vue new file mode 100644 index 0000000..e5f779a --- /dev/null +++ b/pages/management/alloc-maintenance_new.vue @@ -0,0 +1,427 @@ + + + + + diff --git a/pages/management/check.vue b/pages/management/check.vue index 57d9512..5a6da6a 100644 --- a/pages/management/check.vue +++ b/pages/management/check.vue @@ -159,7 +159,6 @@ pageNum: 1 } this.currentPage1 = 1 - this.pkId = '' this._stIvtCheckdtlCheckPage() }, // 一级表格接口 diff --git a/pages/management/move-inventory.vue b/pages/management/move-inventory.vue index 443d00c..4e77c9e 100644 --- a/pages/management/move-inventory.vue +++ b/pages/management/move-inventory.vue @@ -158,7 +158,6 @@ pageNum: 1 } this.currentPage1 = 1 - this.pkId = '' this._stIvtMoveinvMovePage() }, // 一级表格接口 diff --git a/pages/management/receive-confirm_new.vue b/pages/management/receive-confirm_new.vue index 2c8bb03..14ea1d6 100644 --- a/pages/management/receive-confirm_new.vue +++ b/pages/management/receive-confirm_new.vue @@ -100,7 +100,7 @@ {{el.bcshsl}} {{el.zzmc}} {{['否', '是'][Number(el.sfzj)]}} - + @@ -130,7 +130,7 @@ 修改收货仓库 - + @@ -180,7 +180,7 @@ disabled1: false, value2: '', // 收货仓库信息 range2: [] - }; + } }, onLoad () { this.toSearch() diff --git a/utils/getData2.js b/utils/getData2.js index 44dfffe..396ea5c 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -165,6 +165,23 @@ export const allocationBillInventoryInfo = (obj) => request({ url:'api/allocationBill/queryInventoryInfo', data: obj }) +/** + * 调拨维护新接口 + * 2024/11/14 + */ +// 1.调拨-副表格 +export const allocationBillDetail = (djid) => request({ + url:'api/allocationBillDetail/page', + data: { + djid: djid + } +}) +// 2.调拨-修改行数据 +export const allocationBillDetailUpdate = (obj) => request({ + url:'api/allocationBillDetail/update', + data: obj +}) + /** * 收货确认 diff --git a/utils/mork2.js b/utils/mork2.js index 8ab6c78..0376f50 100644 --- a/utils/mork2.js +++ b/utils/mork2.js @@ -2320,10 +2320,35 @@ export const moveDtlByMoveId = () => { } return res } + export const receiptBillDetailUpdate = () => { let res = { code: '1', desc: 'ok' } return res +} + +export const allocationBillDetail = () => { + let res = { + "pageNum": 1, + "pageSize": 10, + "totalPage": 109, + "totalElements": 1084, + "result": [ + { + "id": "0201", + "material_code": "btAAAAW8Wd5QCrde", + "qty": "1" + }, + { + "id": "0202", + "material_code": "btAAAAW8WdpQCrde", + "qty": "1" + } + ], + "code": 1, + "desc": "查询成功" + } + return res } \ No newline at end of file