新增 绑定停车平台接口

This commit is contained in:
Lemon
2023-08-25 14:23:35 +08:00
parent 454022c553
commit 9c3c80ca3f
12 changed files with 406 additions and 159 deletions

View File

@@ -130,6 +130,7 @@ export function updateSettingByStationId(data) {
// })
// }
// 推送充电站信息到联联平台
export function pushStationInfo(data) {
return request({
url: "/pile/station/pushStationInfo",
@@ -138,3 +139,12 @@ export function pushStationInfo(data) {
})
}
// 绑定停车平台
export function bindParkingPlatform(data) {
return request({
url: '/pile/station/bindParkingPlatform',
method: 'post',
data: data,
})
}