diff --git a/pages.json b/pages.json index dccc7f5..4973232 100644 --- a/pages.json +++ b/pages.json @@ -559,14 +559,22 @@ } } - ,{ - "path" : "pages/SecondPhase/production/BoxStock", - "style" : - { - "navigationStyle": "custom" - } - - } + ,{ + "path" : "pages/SecondPhase/production/BoxStock", + "style" : + { + "navigationStyle": "custom" + } + + } + ,{ + "path" : "pages/SecondPhase/slitting/CallShaft", + "style" : + { + "navigationStyle": "custom" + } + + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/SecondPhase/slitting/CallShaft.vue b/pages/SecondPhase/slitting/CallShaft.vue new file mode 100644 index 0000000..0fb7aaf --- /dev/null +++ b/pages/SecondPhase/slitting/CallShaft.vue @@ -0,0 +1,163 @@ + + + \ No newline at end of file diff --git a/utils/getData3.js b/utils/getData3.js index 088b8d1..e1391af 100644 --- a/utils/getData3.js +++ b/utils/getData3.js @@ -341,3 +341,26 @@ export const zjInBoundConfirm = (code) => request({ url:'api/pdmBiSubpackagerelation/zjInBoundConfirm', data: {search: code} }) +/** + * 分切呼叫送轴(分切管理) + */ +export const paperQueryPaperMaterial = () => request({ + url:'api/pda/paper/queryPaperMaterial', + data: {} +}) +export const forcedFeedShaft = (area, dname, dcode, ulk, ulv, urk, urv, dlk, dlv, drk, drv) => request({ + url:'api/pda/slitter/forcedFeedShaft', + data: { + area: area, + device_code: dname, + point_code: dcode, + up_left_size_k: ulk, + up_left_size_v: ulv, + up_right_size_k: urk, + up_right_size_v: urv, + down_left_size_k: dlk, + down_left_size_v: dlv, + down_right_size_k: drk, + down_right_size_v: drv, + } +}) diff --git a/utils/mork2.js b/utils/mork2.js index 1758417..6aed16a 100644 --- a/utils/mork2.js +++ b/utils/mork2.js @@ -95,7 +95,8 @@ export const allAuthority = () => { {menu_id: '8', title: 'AGV放行', path: '/pages/SecondPhase/slitting/AGVPass'}, {menu_id: '8', title: '子卷重量维护', path: '/pages/SecondPhase/slitting/SubRollWeight'}, {menu_id: '8', title: '分切上轴', path: '/pages/SecondPhase/slitting/UpperShaftCut'}, - {menu_id: '8', title: '分切上轴2', path: '/pages/SecondPhase/slitting/UpperShaftCut2'} + {menu_id: '8', title: '分切上轴2', path: '/pages/SecondPhase/slitting/UpperShaftCut2'}, + {menu_id: '8', title: '分切呼叫送轴', path: '/pages/SecondPhase/slitting/CallShaft'} ]}, {menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [ {menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'}, @@ -244,7 +245,7 @@ export const queryBoxSpec = () => { } export const queryDeviceByarea = () => { let res = { - data: [{value: '01', text: 'a'}, {value: '02', text: 'bc'}] + data: [{value: '0aa', text: 'aa'}, {value: '0bb', text: 'bb'}] } return res } @@ -259,4 +260,22 @@ export const doSubRollWeightBindingTip = () => { tip: '111111' } return res +} +export const paperQueryPaperMaterial = () => { + let res = { + rows: [{ + "text": "纸制筒管|纸管|3英寸|300", + "value": "482210000000001" + }, { + "text": "纸制筒管|纸管|3英寸|340", + "value": "482210000000002" + }, { + "text": "纸制筒管|纸管|3英寸|350", + "value": "482210000000003" + }, { + "text": "纸制筒管|纸管|3英寸|380", + "value": "482210000000004" + }] + } + return res } \ No newline at end of file