add 路线锁定

This commit is contained in:
蔡玲
2024-09-13 16:11:36 +08:00
parent 1df8c4b31c
commit 1131969982
6 changed files with 116 additions and 1 deletions

View File

@@ -73,3 +73,8 @@ export const updateOrder = (data) => request({
url:'api/handheld/updateOrder',
data: data
})
// 路线锁定
export const updateRouteStatus = (code, type, status) => request({
url:'api/handheld/updateRouteStatus',
data: {region_code: code, type: type, status: status}
})