add套轴申请

This commit is contained in:
蔡玲
2024-12-10 16:16:38 +08:00
parent 141fab5b98
commit 3a9bce9c60
4 changed files with 226 additions and 1 deletions

View File

@@ -510,4 +510,16 @@ data: {
export const rgvStatusQuery = () => request({
url:'api/pda/task/rgvStatusQuery',
data: {}
})
})
/**
* 套轴申请
*/
export const queryMaterialInfoL1400 = (area, code) => request({
url:'api/pda/shipping/queryMaterialInfoL1400',
data: {product_area: area, device_code: code}
})
export const shaftRecedesL1400 = (area, size, qg, sp) => request({
url:'api/pda/shipping/shaftRecedesL1400',
data: {product_area: area, qzz_size: size, qzz_generation: qg, start_point: sp}
})

View File

@@ -20,6 +20,7 @@ export const allAuthority = () => {
{menu_id: '3', title: '空轴配送', path: '/pages/ProductManage/ZjDelivery'},
{menu_id: '4', title: '空轴进站', path: '/pages/ProductManage/ZjInStore'},
{menu_id: '5', title: '子卷出站', path: '/pages/ProductManage/ZjOutStore'},
{menu_id: '6', title: '套轴申请', path: '/pages/ProductManage/AxisApply'}
]},
{menu_id: '4', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/ProductManage/PointManage'},
@@ -229,4 +230,10 @@ export const queryBoxSpec = () => {
"msg": "查询成功"
}
return res
}
export const queryDeviceByarea = () => {
let res = {
data: [{value: '01', text: 'a'}, {value: '02', text: 'bc'}]
}
return res
}