mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
新增 后管添加站点互联互通配置
This commit is contained in:
@@ -81,3 +81,32 @@ export function updateStationQRCodePrefix(data) {
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询站点互联互通配置
|
||||
* @param id
|
||||
* @returns {AxiosPromise}
|
||||
*/
|
||||
export function getSettingByStationId(id) {
|
||||
return request({
|
||||
url: "/pile/station/getSettingByStationId/" + id,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
|
||||
// 修改站点互联互通配置
|
||||
export function updateSettingByStationId(data) {
|
||||
return request({
|
||||
url: "/pile/station/updateSettingByStationId",
|
||||
method: "post",
|
||||
data: data,
|
||||
})
|
||||
}
|
||||
|
||||
// export function insertSettingInfo(data) {
|
||||
// return request({
|
||||
// url: "/pile/station/insertSettingInfo",
|
||||
// method: "post",
|
||||
// data: data,
|
||||
// })
|
||||
// }
|
||||
|
||||
Reference in New Issue
Block a user