|
@@ -4,7 +4,7 @@
|
|
|
<el-tab-pane label="总览" name="summery">
|
|
|
<el-row type="flex" :gutter="20" style="margin-top: 20px">
|
|
|
<el-col :span="12">
|
|
|
- <PieChartBlock title="当日供电量【单位:kWh】" :opt-cfg="elecQuantity">
|
|
|
+ <PieChartBlock title="当日供电量【单位:kW·h】" :opt-cfg="elecQuantity">
|
|
|
</PieChartBlock>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
@@ -59,7 +59,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="单位电价(¥)" align="center" prop="meterUnitPrice" />
|
|
|
- <el-table-column label="供电量(kWh)" align="center" prop="useElecQuantity" />
|
|
|
+ <el-table-column label="供电量(kW·h)" align="center" prop="useElecQuantity" />
|
|
|
<el-table-column label="供电电费(¥)" align="center" prop="useElecCost" />
|
|
|
</el-table>
|
|
|
<pagination :total="total" :page-size.sync="queryParams.pageSize" :page-sizes="[10, 20, 50]"
|
|
@@ -102,9 +102,9 @@
|
|
|
<span>{{ scope.row.time }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="总发电量(kWh)" align="center" prop="genElecQuantity" />
|
|
|
- <el-table-column label="自用电量(kWh)" align="center" prop="useElecQuantity" />
|
|
|
- <el-table-column label="上网电量(kWh)" align="center" prop="upElecQuantity" />
|
|
|
+ <el-table-column label="总发电量(kW·h)" align="center" prop="genElecQuantity" />
|
|
|
+ <el-table-column label="自用电量(kW·h)" align="center" prop="useElecQuantity" />
|
|
|
+ <el-table-column label="上网电量(kW·h)" align="center" prop="upElecQuantity" />
|
|
|
<el-table-column label="上网收益(¥)" align="center" prop="upElecEarn" />
|
|
|
</el-table>
|
|
|
<pagination :total="total" :page-size.sync="queryParams.pageSize" :page-sizes="[10, 20, 50]"
|
|
@@ -296,7 +296,7 @@ export default {
|
|
|
},
|
|
|
yAxis: [
|
|
|
{
|
|
|
- name: 'kWh(千瓦时)',
|
|
|
+ name: 'kW·h(千瓦时)',
|
|
|
type: 'value'
|
|
|
},
|
|
|
{
|
|
@@ -362,7 +362,7 @@ export default {
|
|
|
},
|
|
|
yAxis: [
|
|
|
{
|
|
|
- name: 'kWh(千瓦时)',
|
|
|
+ name: 'kW·h(千瓦时)',
|
|
|
type: 'value'
|
|
|
},
|
|
|
{
|
|
@@ -446,7 +446,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getLabelContentForElecQuantity () {
|
|
|
- return `总供电{totalSupply|${this.totalSupply} kWh}`;
|
|
|
+ return `总供电{totalSupply|${this.totalSupply} kW·h}`;
|
|
|
},
|
|
|
getLabelContentForElecCost () {
|
|
|
return `供电成本{totalCost|${this.totalCost} 元}`;
|