diff --git a/pages.json b/pages.json index 30b9375..e7b59e4 100644 --- a/pages.json +++ b/pages.json @@ -423,6 +423,14 @@ } } + ,{ + "path" : "pages/SecondPhase/slitting/PaperBind", + "style" : + { + "navigationStyle": "custom" + } + + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/SecondPhase/slitting/PaperBind.vue b/pages/SecondPhase/slitting/PaperBind.vue new file mode 100644 index 0000000..ff25b6e --- /dev/null +++ b/pages/SecondPhase/slitting/PaperBind.vue @@ -0,0 +1,117 @@ + + + \ No newline at end of file diff --git a/pages/home/home.vue b/pages/home/home.vue index 18e04ac..3cd0b7e 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -259,6 +259,8 @@ background linear-gradient(to right, rgba(83, 191, 194,0.8) 0%, rgba(119, 198, 201,0.8) 100%) .bgc_7 background linear-gradient(to right, rgba(244, 97, 61,0.8) 0%, rgba(245, 130, 102,0.8) 100%) +.bgc_8 + background linear-gradient(to right, rgba(207, 24, 24, .8) 0%, rgba(245, 102, 102, .8) 100%) .tabs_wrap border-radius 20rpx 20rpx 0 0 background-color #ecedef diff --git a/utils/getData3.js b/utils/getData3.js index 9b720f5..fd4a5f2 100644 --- a/utils/getData3.js +++ b/utils/getData3.js @@ -153,4 +153,11 @@ export const doInitShaftPoint = (code) => request({ export const updatePackageInfo = (ivt, cn) => request({ url:'api/twoPda/vehicle/updatePackageInfo', data: {ivt_status: ivt, container_name: cn} +}) +/** + * 纸管绑定 + */ +export const operateIvt = (type, vcode, num, code) => request({ + url:'api/bstIvtStockingivt/operateIvt', + data: {type: type, vehicle_code: vcode, row_num: num, material_code: code} }) \ No newline at end of file diff --git a/utils/mork2.js b/utils/mork2.js index 647bfb2..3594a29 100644 --- a/utils/mork2.js +++ b/utils/mork2.js @@ -80,7 +80,8 @@ export const authority = () => { {menu_id: '3', title: '空轴配送', path: '/pages/SecondPhase/slitting/ZjDelivery'}, {menu_id: '4', title: '空轴进站', path: '/pages/SecondPhase/slitting/ZjInStore'}, {menu_id: '5', title: '子卷出站', path: '/pages/SecondPhase/slitting/ZjOutStore'}, - {menu_id: '7', title: '穿拔轴初始化', path: '/pages/SecondPhase/slitting/DoInitShaft'} + {menu_id: '7', title: '穿拔轴初始化', path: '/pages/SecondPhase/slitting/DoInitShaft'}, + {menu_id: '8', title: '纸管绑定', path: '/pages/SecondPhase/slitting/PaperBind'} ]}, {menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [ {menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'}, @@ -116,4 +117,10 @@ export const twoPdaIvtbBoxDtlQuery = (no) => { export const getShaftPoint = () => { let res = [{"text":"穿拔轴点位1","value":"B_CBJ01"},{"text":"穿拔轴点位2","value":"B_CBJ02"},{"text":"穿拔轴点位3","value":"B_CBJ03"},{"text":"穿拔轴点位4","value":"B_CBJ04"}] return res +} +export const queryPaperMaterial = () => { + let res = { + rows: [{text: '物料一', value: '001'}, {text: '物料a', value: '002'}, {text: '物料b', value: '003'}] + } + return res } \ No newline at end of file