add饵料下卷\空轴绑定\空轴退回

This commit is contained in:
2025-04-25 18:08:04 +08:00
parent 45cafaf9f2
commit 459329335d
7 changed files with 540 additions and 1 deletions

View File

@@ -527,4 +527,34 @@ export const boxReturn = (code, box) => request({
device_code: code,
box: box
}
})
/**
* 空轴退回
*/
export const returnShaft = (code) => request({
url:'api/pda/slitter/returnShaft',
data: {point_code: code}
})
/**
* 空轴绑定
*/
export const slitterShaftBinding = (code, size) => request({
url:'api/pda/slitter/ShaftBinding',
data: {point_code: code, size: size}
})
/**
* 饵料下卷
*/
export const downBait = (area, device, point, lk, lkv, rk, rkv, up) => request({
url:'api/pda/slitter/downBait',
data: {
area: area,
device_code: device,
point_code: point,
left_spec: lk,
left_spec_value: lkv,
right_spec: rk,
right_spec_value: rkv,
up_or_down: up
}
})