rev 修改

This commit is contained in:
2023-04-06 10:40:37 +08:00
parent 6b05845e3c
commit eda9ba4614
123 changed files with 12581 additions and 13395 deletions

View File

@@ -0,0 +1,42 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/produceshiftorder',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/produceshiftorder/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/produceshiftorder',
method: 'put',
data
})
}
export function finished(data) {
return request({
url: 'api/produceshiftorder/finished',
method: 'post',
data
})
}
export function synchron() {
return request({
url: 'api/produceshiftorder/synchron',
method: 'post'
})
}
export default { add, edit, del, finished, synchron }