Initial commit

This commit is contained in:
2024-11-25 09:33:57 +08:00
commit a80c644265
521 changed files with 29740 additions and 0 deletions

123
src/api/system/process.js Normal file
View File

@@ -0,0 +1,123 @@
import request from '@/utils/request'
// 更新
export function materialUpdate(query) {
return request({
url: '/work/material/update',
method: 'get',
params: query
})
}
// 更新
export function stepSubmit(query) {
return request({
url: '/work/step/submit',
method: 'get',
params: query
})
}
// 更新
export function materialCheckFlag(query) {
return request({
url: '/work/material/checkFlag',
method: 'get',
params: query
})
}
// 更新
export function materialNextStepFlag(query) {
return request({
url: '/work/material/nextStepFlag',
method: 'get',
params: query
})
}
// 更新
export function stepUpdate(query) {
return request({
url: '/work/step/update',
method: 'get',
params: query
})
}
// 更新
export function stepNext(query) {
return request({
url: '/work/step/next',
method: 'get',
params: query
})
}
// 更新
export function materialNext(query) {
return request({
url: '/work/material/next',
method: 'get',
params: query
})
}
// 更新
export function materialStart(query) {
return request({
url: '/work/material/start',
method: 'get',
params: query
})
}
// 更新
export function stepCheck(batchId) {
return request({
url: '/work/step/check/'+batchId,
method: 'get'
})
}
// 更新
export function stepFinish(batchId) {
return request({
url: '/work/step/finish/'+batchId,
method: 'get'
})
}
// 更新
export function listMaterial(query) {
return request({
url: '/work/material/list',
method: 'get',
params: query
})
}
// 更新
export function stepProcess(query) {
return request({
url: '/work/step/process',
method: 'get',
params: query
})
}
// 更新
export function stepPLC(query) {
return request({
url: '/work/step/plc',
method: 'get',
params: query
})
}
// 新增用户
export function materialFinalData(data) {
return request({
url: '/work/material/finalData',
method: 'post',
data: data
})
}