纸管绑定

This commit is contained in:
2024-06-26 09:11:35 +08:00
parent af03713ac9
commit 650670f2dd
5 changed files with 142 additions and 1 deletions

View File

@@ -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}
})

View File

@@ -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
}