点位配置

This commit is contained in:
2025-08-08 09:53:12 +08:00
parent 8666891fcb
commit b471d437cb
4 changed files with 111 additions and 1 deletions

View File

@@ -245,3 +245,9 @@ export const checkoutbillBackMaterial = (dcode, vcode, type) => request({
url:'api/checkoutbill/BackMaterial',
data: {device_code: dcode, vehicle_code: vcode, task_type: type}
})
// 点位属性设置
export const updatePointType = (code, type) => request({
url:'api/schBasePoint/updatePointType',
data: {point_code: code, point_type: type}
})