update 平台配置页面

This commit is contained in:
2024-04-26 14:35:22 +08:00
parent 9f56ffd45b
commit b5fc1bb158

View File

@@ -229,11 +229,13 @@ export default {
// 提交 // 提交
onSubmit() { onSubmit() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
this.notificationForm.platformType = this.platformType;
console.log(this.notificationForm); console.log(this.notificationForm);
}, },
// 点击推送站点信息 // 点击推送站点信息
clickNotificationStationInfo() { clickNotificationStationInfo() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
this.notificationForm.platformType = this.platformType;
notificationStationInfo(this.notificationForm).then(response => { notificationStationInfo(this.notificationForm).then(response => {
}); });
@@ -241,6 +243,7 @@ export default {
// 点出推送设备状态 // 点出推送设备状态
clickNotificationStationStatus() { clickNotificationStationStatus() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
this.notificationForm.platformType = this.platformType;
notificationStationStatus(this.notificationForm).then(response => { notificationStationStatus(this.notificationForm).then(response => {
}); });
@@ -248,21 +251,24 @@ export default {
// 点击推送设备充电中状态 // 点击推送设备充电中状态
clickNotificationConnectorChargeStatus() { clickNotificationConnectorChargeStatus() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
notificationStationInfo(this.notificationForm).then(response => { this.notificationForm.platformType = this.platformType;
notificationConnectorChargeStatus(this.notificationForm).then(response => {
}); });
}, },
// 点击推送订单信息 // 点击推送订单信息
clickNotificationChargeOrderInfo() { clickNotificationChargeOrderInfo() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
notificationStationInfo(this.notificationForm).then(response => { this.notificationForm.platformType = this.platformType;
notificationChargeOrderInfo(this.notificationForm).then(response => {
}); });
}, },
// 点击推送站点费率 // 点击推送站点费率
clickNotificationStationFee() { clickNotificationStationFee() {
this.notificationForm.stationId = this.notificationStationId; this.notificationForm.stationId = this.notificationStationId;
notificationStationInfo(this.notificationForm).then(response => { this.notificationForm.platformType = this.platformType;
notificationStationFee(this.notificationForm).then(response => {
}); });
}, },