删除二期修改

This commit is contained in:
2024-04-25 15:59:43 +08:00
parent b69f086c32
commit 8f6cc7dff6
22 changed files with 76 additions and 3581 deletions

View File

@@ -1,93 +0,0 @@
/**
* author:cll
* day:2024-04-18
* content: 二期接口
*/
import request from './request.js'
/**
* 二期空载具入库
*/
// 1.1空载具入库-【入库按钮】
export const twoPdaVehicleIn = (code, type, pcode) => request({
url:'api/twoPda/vehicle/vehicleIn',
data: {
vehicle_code: code,
vehicle_type: type,
point_code: pcode
}
})
/**
* 二期空木箱入库
*/
// 1.1空木箱入库-【入库按钮】
export const twoPdaBoxIn = (code, no, pcode) => request({
url:'api/twoPda/vehicle/boxIn',
data: {
vehicle_code: code,
box_no: no,
point_code: pcode
}
})
/**
* 二期发货区解绑
*/
// 1.1单据初始化查询
export const twoPdaIvtQuery = (no, code) => request({
url:'api/twoPda/st/ivtQuery',
data: {
box_no: no,
bill_code: code
}
})
// 1.2【确认】按钮(二级页面)
export const twoPdaIvtDtlQuery = (no, code) => request({
url:'api/twoPda/st/ivtDtlQuery',
data: {
box_no: no,
bill_code: code
}
})
// 1.3木箱明细(点木箱超链接跳转)
export const twoPdaIvtbBoxDtlQuery = (no) => request({
url:'api/twoPda/st/ivtbBoxDtlQuery',
data: {
box_no: no
}
})
// 1.4【出库确认】按钮(二级页面按钮)
export const twoPdaOutConfirm = (no) => request({
url:'api/twoPda/st/outConfirm',
data: {
box_no: no
}
})
/**
* 二期表处工序
*/
// 出入烘箱
export const surfaceOperate = (code, name, option) => request({
url:'api/pda/surface/operate',
data: {
point_code: code,
container_name: name,
option: option
}
})
// 允许进入
export const surfaceConfirm = (code) => request({
url:'api/pda/surface/confirm',
data: {
point_code: code
}
})
/**
* 生箔工序
*/
// 1.1呼叫
export const needEmptyAxisTest = (code, name) => request({
url: 'api/pda/raw/needEmptyAxisTest',
data: {
point_code: code,
container_name: name,
}
})

View File

@@ -2,7 +2,6 @@ export const authority = () => {
let res = {
code: '1',
result: {
rf_menu0: {
sonTree: [
{menu_id: '1', path: 'RF01', title: '生产管理', sonTree: [
{menu_id: '1', title: '生箔生产进度', path: '/pages/ProductManage/SboProdProgress'},
@@ -52,40 +51,9 @@ export const authority = () => {
{menu_id: '1', title: '任务管理', path: '/pages/DispatchManage/TaskManage'},
{menu_id: '2', title: 'RGV状态查询', path: '/pages/DispatchManage/RGVStatus'}
]}
]
},
rf_menu1: {
sonTree: [
{menu_id: '1', path: 'RF08', title: '载具入库', sonTree: [
{menu_id: '1', title: '空载具入库', path: '/pages/SecondPhase/EmptyVehicleInStore'}
]},
{menu_id: '2', path: 'RF11', title: '空木箱入库', sonTree: [
{menu_id: '1', title: '空木箱入库', path: '/pages/SecondPhase/EmptyBoxInStore'}
]},
{menu_id: '3', path: 'RF12', title: '发货区', sonTree: [
{menu_id: '1', title: '发货区解绑', path: '/pages/SecondPhase/DeliveryUnbind'}
]},
{menu_id: '4', path: 'RF01', title: '生产管理', sonTree: [
{menu_id: '1', title: '生箔生产进度', path: '/pages/SecondPhase/production/SboProdProgress'},
{menu_id: '2', title: '生箔工序', path: '/pages/SecondPhase/production/SboProcess'},
{menu_id: '3', title: '烘烤工序', path: '/pages/SecondPhase/production/BakeProcess'},
{menu_id: '4', title: '表处工序', path: '/pages/SecondPhase/production/SurfaceProcess'},
{menu_id: '5', title: '人工烘烤', path: '/pages/SecondPhase/production/ManmadeBake'}
]},
{menu_id: '5', path: 'RF03', title: '分切管理', sonTree: [
{menu_id: '1', title: '分切上料', path: '/pages/SecondPhase/slitting/SlittingFeeding'},
{menu_id: '2', title: '空轴套管', path: '/pages/SecondPhase/slitting/ZjCasing'},
{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: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},
{menu_id: '2', title: '异常出库解锁', path: '/pages/SecondPhase/point/ErrorOutUnlock'}
]},
]
]
}
}}
}
return res
}
export const twoPdaIvtQuery = (no, code) => {