mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-04 01:50:17 +08:00
update 平台配置页面
This commit is contained in:
@@ -111,7 +111,7 @@
|
||||
<el-card class="box-card" style="margin-right: 50px;" shadow="hover">
|
||||
<div slot="header" class="clearfix">
|
||||
<span>推送充电站信息变化</span>
|
||||
<el-button style="float: right; padding: 3px 0" type="text">推送</el-button>
|
||||
<el-button style="float: right; padding: 3px 0" type="text" @click="clickNotificationStationInfo">推送</el-button>
|
||||
</div>
|
||||
<div class="text item">
|
||||
推送站点最新信息到第三方平台
|
||||
@@ -123,15 +123,17 @@
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-card class="box-card" style="margin-right: 50px;" shadow="hover">
|
||||
<span>推送设备状态</span>
|
||||
<div slot="header" class="clearfix">
|
||||
<span>推送设备状态</span>
|
||||
<el-button style="float: right; padding: 3px 0" type="text" @click="clickNotificationStationStatus">推送</el-button>
|
||||
</div>
|
||||
<el-form ref="notificationForm" :model="notificationForm" label-width="20%">
|
||||
<el-form-item label="充电桩编号">
|
||||
<el-input v-model="notificationForm.pileSn"></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<!--<el-form-item>
|
||||
<el-button type="primary" @click="clickNotificationStationStatus">推送设备状态</el-button>
|
||||
</el-form-item>
|
||||
</el-form-item>-->
|
||||
</el-form>
|
||||
</el-card>
|
||||
</el-col>
|
||||
@@ -140,14 +142,17 @@
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-card class="box-card" style="margin-right: 50px;" shadow="hover">
|
||||
<span>推送设备充电中状态</span>
|
||||
<div slot="header" class="clearfix">
|
||||
<span>推送设备充电中状态</span>
|
||||
<el-button style="float: right; padding: 3px 0" type="text" @click="clickNotificationConnectorChargeStatus">推送</el-button>
|
||||
</div>
|
||||
<el-form ref="notificationForm" :model="notificationForm" label-width="20%">
|
||||
<el-form-item label="充电枪口编号">
|
||||
<el-input v-model="notificationForm.name"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<!--<el-form-item>
|
||||
<el-button type="primary" @click="clickNotificationConnectorChargeStatus">推送设备充电中状态</el-button>
|
||||
</el-form-item>
|
||||
</el-form-item>-->
|
||||
</el-form>
|
||||
</el-card>
|
||||
</el-col>
|
||||
@@ -156,7 +161,10 @@
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-card class="box-card" style="margin-right: 50px;" shadow="hover">
|
||||
<span>推送充电订单信息</span>
|
||||
<div slot="header" class="clearfix">
|
||||
<span>推送充电订单信息</span>
|
||||
<el-button style="float: right; padding: 3px 0" type="text" @click="clickNotificationChargeOrderInfo">推送</el-button>
|
||||
</div>
|
||||
<el-form ref="notificationForm" :model="notificationForm" label-width="20%">
|
||||
<el-form-item label="订单编号">
|
||||
<el-input v-model="notificationForm.orderCode"></el-input>
|
||||
@@ -172,11 +180,14 @@
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-card class="box-card" style="margin-right: 50px;" shadow="hover">
|
||||
<span>推送站点费率</span>
|
||||
<div slot="header" class="clearfix">
|
||||
<span>推送站点费率</span>
|
||||
<el-button style="float: right; padding: 3px 0" type="text" @click="clickNotificationStationFee">推送</el-button>
|
||||
</div>
|
||||
<el-form ref="notificationForm" :model="notificationForm" label-width="20%">
|
||||
<el-form-item>
|
||||
<!--<el-form-item>
|
||||
<el-button type="primary" @click="clickNotificationStationFee">推送站点费率</el-button>
|
||||
</el-form-item>
|
||||
</el-form-item>-->
|
||||
</el-form>
|
||||
</el-card>
|
||||
</el-col>
|
||||
@@ -237,7 +248,7 @@ export default {
|
||||
this.notificationForm.stationId = this.notificationStationId;
|
||||
this.notificationForm.platformType = this.platformType;
|
||||
notificationStationInfo(this.notificationForm).then(response => {
|
||||
|
||||
this.$modal.msgSuccess("操作成功");
|
||||
});
|
||||
},
|
||||
// 点出推送设备状态
|
||||
@@ -245,7 +256,7 @@ export default {
|
||||
this.notificationForm.stationId = this.notificationStationId;
|
||||
this.notificationForm.platformType = this.platformType;
|
||||
notificationStationStatus(this.notificationForm).then(response => {
|
||||
|
||||
this.$modal.msgSuccess("操作成功");
|
||||
});
|
||||
},
|
||||
// 点击推送设备充电中状态
|
||||
@@ -253,7 +264,7 @@ export default {
|
||||
this.notificationForm.stationId = this.notificationStationId;
|
||||
this.notificationForm.platformType = this.platformType;
|
||||
notificationConnectorChargeStatus(this.notificationForm).then(response => {
|
||||
|
||||
this.$modal.msgSuccess("操作成功");
|
||||
});
|
||||
},
|
||||
// 点击推送订单信息
|
||||
@@ -261,7 +272,7 @@ export default {
|
||||
this.notificationForm.stationId = this.notificationStationId;
|
||||
this.notificationForm.platformType = this.platformType;
|
||||
notificationChargeOrderInfo(this.notificationForm).then(response => {
|
||||
|
||||
this.$modal.msgSuccess("操作成功");
|
||||
});
|
||||
},
|
||||
// 点击推送站点费率
|
||||
@@ -269,7 +280,7 @@ export default {
|
||||
this.notificationForm.stationId = this.notificationStationId;
|
||||
this.notificationForm.platformType = this.platformType;
|
||||
notificationStationFee(this.notificationForm).then(response => {
|
||||
|
||||
this.$modal.msgSuccess("操作成功");
|
||||
});
|
||||
},
|
||||
// 点击打开 通知菜单
|
||||
|
||||
Reference in New Issue
Block a user