This commit is contained in:
2025-07-29 18:02:24 +08:00
parent 10fc6693e2
commit 3342dc1e57
5 changed files with 50 additions and 75 deletions

View File

@@ -75,9 +75,9 @@ export const movestorQuerydtl = (code, vcode) => request({
url:'api/pda/movestor/querydtl',
data: {struct_code: code, vehicle_code: vcode}
})
export const movestorMove = (code, vcode, mcode) => request({
export const movestorMove = (code, vcode, mcode, data) => request({
url:'api/pda/movestor/move',
data: {struct_code: code, vehicle_code: vcode, move_struct_code: mcode}
data: {struct_code: code, vehicle_code: vcode, move_struct_code: mcode, data: data}
})
// 作业管理
@@ -99,11 +99,11 @@ export const schPointGetPoint = (code, vcode) => request({
url:'/api/pda/schPoint/getPoint',
data: {struct_code: code, vehicle_code: vcode}
})
export const schPointBinding = (code, vcode) => request({
export const schPointBinding = (code, vcode, data) => request({
url:'api/pda/schPoint/binding',
data: {struct_code: code, vehicle_code: vcode}
data: {struct_code: code, vehicle_code: vcode, data: data}
})
export const schPointDissect = (code, vcode) => request({
export const schPointDissect = (code, vcode, data) => request({
url:'/api/pda/schPoint/dissect',
data: {struct_code: code, vehicle_code: vcode}
data: {struct_code: code, vehicle_code: vcode, data: data}
})