表处工序

This commit is contained in:
2024-04-18 15:12:23 +08:00
parent 3f98374988
commit 83b7880e01
9 changed files with 865 additions and 19 deletions

View File

@@ -1,4 +1,9 @@
// 二期接口——cll
/**
* author:cll
* day:2024-04-18
* content: 二期接口
*/
import request from './request.js'
/**
* 二期空载具入库
*/
@@ -55,4 +60,23 @@ export const twoPdaOutConfirm = (no) => request({
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
}
})

View File

@@ -64,6 +64,13 @@ export const authority = () => {
]},
{menu_id: '3', path: 'RF12', title: '发货区', sonTree: [
{menu_id: '1', title: '发货区解绑', path: '/pages/SecondPhase/DeliveryUnbind'}
]},
{menu_id: '1', 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'}
]}
]
}