|
|
@@ -49,14 +49,14 @@
|
|
|
</el-input>
|
|
|
<el-input
|
|
|
v-model="state.formQuery.startChargeSeq"
|
|
|
- placeholder="充电订单号(EN+)"
|
|
|
+ placeholder="充电订单号"
|
|
|
clearable
|
|
|
@blur="loadData(true)"
|
|
|
class="wd150 mr10">
|
|
|
</el-input>
|
|
|
<el-input
|
|
|
v-model="state.formQuery.connectorId"
|
|
|
- placeholder="充电设备接口编码(EN+)"
|
|
|
+ placeholder="充电设备接口编码"
|
|
|
clearable
|
|
|
@blur="loadData(true)"
|
|
|
class="wd150 mr10">
|
|
|
@@ -93,14 +93,14 @@
|
|
|
@blur="loadData(true)"
|
|
|
class="wd150 mr10">
|
|
|
</ext-d-select>
|
|
|
- <ext-d-select
|
|
|
- v-model="state.formQuery.stopReason"
|
|
|
- placeholder="充电停止原因"
|
|
|
- clearable
|
|
|
- type="ChargeOrder.stopReason"
|
|
|
- @blur="loadData(true)"
|
|
|
- class="wd150 mr10">
|
|
|
- </ext-d-select>
|
|
|
+<!-- <ext-d-select-->
|
|
|
+<!-- v-model="state.formQuery.stopReason"-->
|
|
|
+<!-- placeholder="充电停止原因"-->
|
|
|
+<!-- clearable-->
|
|
|
+<!-- type="ChargeOrder.stopReason"-->
|
|
|
+<!-- @blur="loadData(true)"-->
|
|
|
+<!-- class="wd150 mr10">-->
|
|
|
+<!-- </ext-d-select>-->
|
|
|
<ext-d-select
|
|
|
v-model="state.formQuery.invoiceStatus"
|
|
|
placeholder="发票状态"
|
|
|
@@ -214,20 +214,21 @@ const state = reactive({
|
|
|
data: [] as Array < any >,
|
|
|
loading: false,
|
|
|
columns: [
|
|
|
- {label: '站点ID', prop: 'stationId',width:130, resizable: true, fixed: 'left'},
|
|
|
- {label: '充电订单号(EN+)', prop: 'startChargeSeq', width:300, resizable: true, fixed: 'left'},
|
|
|
- {label: '充电设备接口编码(EN+)', prop: 'connectorId', width:200, resizable: true},
|
|
|
- {label: '充电开始时间', prop: 'startTime', sortable: 'custom', width:180, resizable: true},
|
|
|
- {label: '充电结束时间', prop: 'endTime', sortable: 'custom',width:180, resizable: true},
|
|
|
+ {label: '站点ID', prop: 'stationId',width:80, resizable: true, fixed: 'left'},
|
|
|
+ {label: '充电订单号', prop: 'startChargeSeq', width:170, resizable: true, fixed: 'left'},
|
|
|
+ {label: '充电设备接口编码', prop: 'connectorId', width:160, resizable: true},
|
|
|
+ {label: '充电开始时间', prop: 'startTime', sortable: 'custom', width:160, resizable: true},
|
|
|
+ {label: '充电结束时间', prop: 'endTime', sortable: 'custom',width:160, resizable: true},
|
|
|
+ {label: '充电量(度)', prop: 'totalPower', width:120, resizable: true},
|
|
|
{label: '累积总金额(元)', prop: 'totalMoney', width:150, resizable: true},
|
|
|
- {label: '累积电费(元)', prop: 'elecMoney', width:150, resizable: true},
|
|
|
+ {label: '累积电费(元)', prop: 'elecMoney', width:140, resizable: true},
|
|
|
{label: '累积服务费(元)', prop: 'serviceMoney', width:150, resizable: true},
|
|
|
// {label: '时段数:0~32', prop: 'sumPeriod', width:150, resizable: true},
|
|
|
// {label: '充电明细信息', prop: 'chargeDetail', width:150, resizable: true},
|
|
|
- {label: '订单状态', prop: 'orderStatus', width:150, resizable: true},
|
|
|
- {label: '充电状态', prop: 'chargeStatus', width:150, resizable: true},
|
|
|
+ {label: '订单状态', prop: 'orderStatus', width:120, resizable: true},
|
|
|
+ {label: '充电状态', prop: 'chargeStatus', width:120, resizable: true},
|
|
|
{label: '充电停止原因', prop: 'stopReason', width:150, resizable: true},
|
|
|
- {label: '发票状态', prop: 'invoiceStatus', width:150, resizable: true},
|
|
|
+ {label: '发票状态', prop: 'invoiceStatus', width:120, resizable: true},
|
|
|
// {label: '创建时间', prop: 'createTime', sortable: 'custom', width:150, resizable: true},
|
|
|
// {label: '更新时间', prop: 'updateTime', sortable: 'custom',width:150, resizable: true},
|
|
|
{
|