mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-30 20:17:59 +08:00
update 平台配置页面
This commit is contained in:
@@ -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 => {
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user