diff --git a/pages.json b/pages.json index 566250a..7709910 100644 --- a/pages.json +++ b/pages.json @@ -200,6 +200,12 @@ } } + ,{ + "path" : "pages/ProductManage/SlittingFeeding", + "style": { + "navigationStyle": "custom" + } + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/ProductManage/SlittingFeeding.vue b/pages/ProductManage/SlittingFeeding.vue new file mode 100644 index 0000000..94a738d --- /dev/null +++ b/pages/ProductManage/SlittingFeeding.vue @@ -0,0 +1,147 @@ + + + + + diff --git a/pages/WarehouseManage/SemifinishedInStore.vue b/pages/WarehouseManage/SemifinishedInStore.vue index 16a8073..d2f0990 100644 --- a/pages/WarehouseManage/SemifinishedInStore.vue +++ b/pages/WarehouseManage/SemifinishedInStore.vue @@ -166,6 +166,7 @@ this.disabled = false this.pkId = '' this.pkObj = {} + this.dataList = [] this._coolIOQuery() uni.showToast({ title: res.message, diff --git a/utils/getData2.js b/utils/getData2.js index 78a75bc..669b822 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -40,10 +40,11 @@ export const authority = () => { {menu_id: '2', name: '半成品出库', path: '/pages/WarehouseManage/SemifinishedOutStore'}, ]}, {menu_id: '3', path: 'RF03', name: '分切管理', sonTree: [ - {menu_id: '1', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'}, - {menu_id: '2', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'}, - {menu_id: '3', name: '子卷进站', path: '/pages/ProductManage/ZjInStore'}, - {menu_id: '4', name: '子卷出站', path: '/pages/ProductManage/ZjOutStore'}, + {menu_id: '1', name: '分切上料', path: '/pages/ProductManage/SlittingFeeding'}, + {menu_id: '2', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'}, + {menu_id: '3', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'}, + {menu_id: '4', name: '子卷进站', path: '/pages/ProductManage/ZjInStore'}, + {menu_id: '5', name: '子卷出站', path: '/pages/ProductManage/ZjOutStore'}, ]}, {menu_id: '4', path: 'RF04', name: '点位管理', sonTree: [ {menu_id: '1', name: '点位管理', path: '/pages/ProductManage/PointManage'}, @@ -335,4 +336,23 @@ export const customerPrint = (box_no, ptype) => request({ export const virtualprintType = (url) => request1({ url: `${url}/` + 'api/pda/virtual/printType', data: {} +}) + +/** + * 分切上料 + */ +// 1.1分切计划初始化查询 +export const feedingQueryMaterialInfo = (area, code) => request({ + url:'api/pda/feeding/queryMaterialInfo', + data: { + product_area: area, + device_code: code + } +}) +// 1.2呼叫 +export const feedingConfirm = (row) => request({ + url:'api/pda/feeding/confirm', + data: { + cut_rows: row + } }) \ No newline at end of file