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

View File

@@ -0,0 +1,99 @@
import request from '@/utils/request'
// 查询部门列表
export function stepAbnormal(query) {
return request({
url: '/work/step/abnormal',
method: 'get',
params: query
})
}
// 查询部门列表
export function materialSubmit(query) {
return request({
url: '/work/material/submit',
method: 'get',
params: query
})
}
// 查询部门列表
export function materialAbnormalList(query) {
return request({
url: '/work/material/abnormal_list',
method: 'get',
params: query
})
}
// 查询部门列表
export function materialCheckFlagError(query) {
return request({
url: '/work/material/checkFlagError',
method: 'get',
params: query
})
}
// 查询部门列表
export function materialNextStepFlagError(query) {
return request({
url: '/work/material/nextStepFlagError',
method: 'get',
params: query
})
}
// 查询部门列表
export function stepNextError(query) {
return request({
url: '/work/step/nextError',
method: 'get',
params: query
})
}
// /work/material/abnormal_start
export function materialAbnormalStart(query) {
return request({
url: '/work/material/abnormal_start',
method: 'get',
params: query
})
}
// /work/material/abnormal_start
export function stepFinishError(batchId) {
return request({
url: '/work/step/finishError/'+batchId,
method: 'get',
})
}
// /work/material/abnormal_start
export function materialNextError(query) {
return request({
url: '/work/material/nextError',
method: 'get',
params: query,
})
}
// /work/material/abnormal_start
export function stepCheckAbnormal(batchId) {
return request({
url: '/work/step/check_abnormal/'+batchId,
method: 'get',
})
}
// 新增用户
export function stepDel(data) {
return request({
url: '/work/step/del',
method: 'post',
data: data
})
}