穿拔轴初始化

This commit is contained in:
2024-06-12 09:49:13 +08:00
parent c999c8d9a9
commit 6df5018285
4 changed files with 92 additions and 0 deletions

View File

@@ -133,4 +133,17 @@ export const slitterDevices = () => request({
export const downRolls = (code) => request({
url:'api/pda/slitter/downRolls',
data: {device_code: code}
})
/**
* 穿拔轴初始化
*/
// 下拉框数据
export const getShaftPoint = () => request({
url:'api/pda/slitter/getShaftPoint',
data: {}
})
// 确定
export const doInitShaftPoint = (code) => request({
url:'api/pda/slitter/doInitShaftPoint',
data: {point_code: code}
})

View File

@@ -79,6 +79,7 @@ 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: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},
@@ -110,4 +111,8 @@ export const twoPdaIvtbBoxDtlQuery = (no) => {
data: [{package_box_sn: '1', container_name: 'ljdjldj'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}, {package_box_sn: '2'}]
}
return res
}
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
}