新增 后管添加站点互联互通配置

This commit is contained in:
Lemon
2023-05-25 15:24:48 +08:00
parent 28d9e5ae7a
commit a94e93c5d4
4 changed files with 92 additions and 0 deletions

View File

@@ -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,
// })
// }