载具解绑

This commit is contained in:
2023-06-02 10:50:02 +08:00
parent 3b7bc58e0d
commit a3d6bb2b82
4 changed files with 232 additions and 1 deletions

View File

@@ -116,6 +116,11 @@ export const sendEmpty = (code, vcode) => post('api/pda/sendEmpty', {
})
// 叫空
export const callEmpty = (code, vcode) => post('api/pda/callEmpty', {
export const callEmpty = (code) => post('api/pda/callEmpty', {
point_code: code
})
// 载具解绑
export const vehicleUnbind = (code) => post('api/pda/vehicleUnbind', {
point_code: code
})