Merge branch 'dev-zza' into dev

This commit is contained in:
Lemon
2025-02-12 09:40:22 +08:00
10 changed files with 159 additions and 58 deletions

View File

@@ -140,13 +140,13 @@ export function updateSettingByStationId(data) {
// }
// 推送充电站信息到联联平台
export function pushStationInfo(data) {
return request({
url: "/pile/station/pushStationInfo",
method: "post",
data: data,
})
}
// export function pushStationInfo(data) {
// return request({
// url: "/pile/station/pushStationInfo",
// method: "post",
// data: data,
// })
// }
// 绑定停车平台
export function bindParkingPlatform(data) {

View File

@@ -256,7 +256,6 @@ import {
getStationInfo,
updateStationQRCodePrefix,
updateSettingByStationId,
pushStationInfo,
getParkingInfoList,
bindParkingPlatform,
getRelationByStationId,
@@ -455,19 +454,19 @@ export default {
});
},
// 推送站点
pushStation() {
let exchange = "";
const param = {
stationId: this.stationId,
thirdPartyTypes: this.exchange,
};
console.log("param", param);
pushStationInfo(param).then((response) => {
console.log("response", response);
this.$modal.msg(response.obj);
this.disableFlag = true;
});
},
// pushStation() {
// let exchange = "";
// const param = {
// stationId: this.stationId,
// thirdPartyTypes: this.exchange,
// };
// console.log("param", param);
// pushStationInfo(param).then((response) => {
// console.log("response", response);
// this.$modal.msg(response.obj);
// this.disableFlag = true;
// });
// },
// 保存站点与第三方平台关系
saveStationThirdParty() {