diff --git a/jsowell-ui/src/views/thirdparty/secret/detail.vue b/jsowell-ui/src/views/thirdparty/secret/detail.vue index e333fa46c..60db88754 100644 --- a/jsowell-ui/src/views/thirdparty/secret/detail.vue +++ b/jsowell-ui/src/views/thirdparty/secret/detail.vue @@ -229,11 +229,13 @@ export default { // 提交 onSubmit() { this.notificationForm.stationId = this.notificationStationId; + this.notificationForm.platformType = this.platformType; console.log(this.notificationForm); }, // 点击推送站点信息 clickNotificationStationInfo() { this.notificationForm.stationId = this.notificationStationId; + this.notificationForm.platformType = this.platformType; notificationStationInfo(this.notificationForm).then(response => { }); @@ -241,6 +243,7 @@ export default { // 点出推送设备状态 clickNotificationStationStatus() { this.notificationForm.stationId = this.notificationStationId; + this.notificationForm.platformType = this.platformType; notificationStationStatus(this.notificationForm).then(response => { }); @@ -248,21 +251,24 @@ export default { // 点击推送设备充电中状态 clickNotificationConnectorChargeStatus() { this.notificationForm.stationId = this.notificationStationId; - notificationStationInfo(this.notificationForm).then(response => { + this.notificationForm.platformType = this.platformType; + notificationConnectorChargeStatus(this.notificationForm).then(response => { }); }, // 点击推送订单信息 clickNotificationChargeOrderInfo() { this.notificationForm.stationId = this.notificationStationId; - notificationStationInfo(this.notificationForm).then(response => { + this.notificationForm.platformType = this.platformType; + notificationChargeOrderInfo(this.notificationForm).then(response => { }); }, // 点击推送站点费率 clickNotificationStationFee() { this.notificationForm.stationId = this.notificationStationId; - notificationStationInfo(this.notificationForm).then(response => { + this.notificationForm.platformType = this.platformType; + notificationStationFee(this.notificationForm).then(response => { }); },