新增 修改对接高德标识接口

This commit is contained in:
Lemon
2023-08-03 19:32:07 +08:00
parent 8f8fe6694a
commit e30ec8bd33
8 changed files with 97 additions and 25 deletions

View File

@@ -56,6 +56,16 @@ export function updateStation(data) {
});
}
// 修改对接高德标识
export function updateAmapFlag(data) {
return request({
url: "/pile/station/editAmapFlag",
method: "post",
data: data,
});
}
// 删除充电站信息
export function delStation(id) {
return request({
@@ -127,3 +137,4 @@ export function pushStationInfo(data) {
data: data,
})
}