From b5fc1bb1583166c1a09170d7492bbd5d0d16a045 Mon Sep 17 00:00:00 2001 From: Guoqs Date: Fri, 26 Apr 2024 14:35:22 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=B9=B3=E5=8F=B0=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jsowell-ui/src/views/thirdparty/secret/detail.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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 => { }); },