小接口

This commit is contained in:
张江玮
2022-09-06 13:41:43 +08:00
parent 7cbfd22ad2
commit eee29b0583
22 changed files with 308 additions and 62 deletions

View File

@@ -32,6 +32,14 @@ export function changeActive(data) {
})
}
export function changeIsWorkDevice(data) {
return request({
url: 'api/device/changeIsWorkDevice',
method: 'put',
data
})
}
export function getDevice() {
return request({
url: 'api/device/getDevice',

View File

@@ -107,4 +107,12 @@ export function issued(data) {
})
}
export default { add, edit, del, getMaterial, getDevice, getProduceline, getCust, getWorkprocedure, excelImport, getDevice1, copyAdd, sortUpdate, mandFinish, issued }
export function getVehicleType(data) {
return request({
url: 'api/producetask/getVehicleType',
method: 'post',
data
})
}
export default { add, edit, del, getMaterial, getDevice, getProduceline, getCust, getWorkprocedure, excelImport, getDevice1, copyAdd, sortUpdate, mandFinish, issued, getVehicleType }