|
|
@@ -43,21 +43,17 @@
|
|
|
|
|
|
<ext-select
|
|
|
v-model="state.formQuery.stationId"
|
|
|
- multiple
|
|
|
placeholder="站点"
|
|
|
+ clearable
|
|
|
url="station/listStation"
|
|
|
- url-method="get"
|
|
|
+ urlMethod="get"
|
|
|
+ data-key=""
|
|
|
label-key="stationName"
|
|
|
value-key="stationId"
|
|
|
@on-change="loadData(true)"
|
|
|
- data-key=""
|
|
|
- clearable
|
|
|
class="wd150 mr10">
|
|
|
</ext-select>
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<el-button class="ml10" plain size="default" type="success" @click="loadData(true)">
|
|
|
<SvgIcon name="ele-Search"/>
|
|
|
查询
|
|
|
@@ -149,18 +145,19 @@ const state = reactive({
|
|
|
data: [] as Array < any >,
|
|
|
loading: false,
|
|
|
columns: [
|
|
|
- {label: '站点', prop: 'stationId', resizable: true,width:150,fixed:'left'},
|
|
|
- {label: '统计时间', prop: 'statMonth', resizable: true,width:130},
|
|
|
- {label: '总充电费用', prop: 'totalMoney', resizable: true,width:130},
|
|
|
- {label: '总电费', prop: 'elecMoney', resizable: true,width:130},
|
|
|
- {label: '实际抄表电费金额', prop: 'actualElecMoney', resizable: true,width:160},
|
|
|
- {label: '总服务费', prop: 'serviceMoney', resizable: true,width:130},
|
|
|
- {label: '服务费优惠金额', prop: 'serviceMoneyDiscount', resizable: true,width:160},
|
|
|
- {label: '总优惠金额', prop: 'discountAmount', resizable: true,width:130},
|
|
|
- {label: '充电人数', prop: 'chargeUsers', resizable: true,width:130},
|
|
|
- {label: '订单平均充电费用', prop: 'avgOrderMoney', resizable: true,width:160},
|
|
|
- {label: '充电有效订单数', prop: 'validOrders', resizable: true,width:160},
|
|
|
- {label: '创建时间', prop: 'createTime', sortable: 'custom', resizable: true,width:200,fixed: 'right',},
|
|
|
+ {label: '站点', prop: 'stationId', resizable: true,width:140,fixed:'left'},
|
|
|
+ {label: '统计时间', prop: 'statMonth', resizable: true,width:90},
|
|
|
+ {label: '订单金额', prop: 'totalMoney', resizable: true,width:100},
|
|
|
+ {label: '订单电费', prop: 'elecMoney', resizable: true,width:100},
|
|
|
+ {label: '实际抄表电费', prop: 'actualElecMoney', resizable: true,width:120},
|
|
|
+ {label: '订单服务费', prop: 'serviceMoney', resizable: true,width:110},
|
|
|
+ {label: '服务费优惠金额', prop: 'serviceMoneyDiscount', resizable: true,width:135},
|
|
|
+ {label: '总优惠金额', prop: 'discountAmount', resizable: true,width:110},
|
|
|
+ {label: '充电人数', prop: 'chargeUsers', resizable: true,width:100},
|
|
|
+ {label: '充电有效订单数', prop: 'validOrders', resizable: true,width:135},
|
|
|
+ {label: '订单平均充电费用', prop: 'avgOrderMoney', resizable: true,width:145},
|
|
|
+ {label: '单枪平均日充电量', prop: 'avgConnectorElec', resizable: true,width:145},
|
|
|
+ // {label: '创建时间', prop: 'createTime', sortable: 'custom', resizable: true,width:200,fixed: 'right',},
|
|
|
{
|
|
|
label: '操作', prop: 'action', width: 180, align: 'center', fixed: 'right',
|
|
|
}
|