新增点位管理

This commit is contained in:
2024-06-04 15:33:24 +08:00
parent bf2502b927
commit 7737ded5e5
9 changed files with 152 additions and 3 deletions

View File

@@ -210,4 +210,19 @@ export const materialList = () => {
export const getInventoryMaterialInfo = (code) => {
let res = [{"material_code":"FJB","material_name":"负极板","point_code":"01-09-01","point_name":"01排09列01层","vehicle_code":"T202312060006","vehicle_type":"1"}]
return res
}
export const getGhsPointList = () => {
let res = [
{
"point_code": "GHS0101",
"vehicle_name": "负涂片极板真黑金6-DZM-13.2",
"group_id": "1739900219769884672",
"material_qty": 9942
}
]
return res
}
export const changePointQty = (id, qty) => {
let res = {"message":"涂板线入库请求成功"}
return res
}