针对叉车的样式调整
This commit is contained in:
parent
5514557c61
commit
b17a9bc287
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 22 KiB |
|
@ -253,7 +253,7 @@
|
|||
<template v-else-if="column.key === 'vehicleNum'">
|
||||
<i class="el-icon-tickets"/>
|
||||
{{d.row.vehicleNum | dv}}<br/>
|
||||
<i class="el-icon-bicycle"/>
|
||||
<i class="el-icon-truck"/>
|
||||
{{d.row.modelName | dv}}
|
||||
</template>
|
||||
<template v-else-if="column.key === 'music'">
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
>
|
||||
</el-checkbox>
|
||||
<span class="legend-text" @click="jumpToLocation('device')">
|
||||
<i class="el-icon-bicycle" style="color: #67C23A;"></i>设备位置
|
||||
<i class="el-icon-truck" style="color: #67C23A;"></i>设备位置
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -159,7 +159,7 @@ export default {
|
|||
if (!isNaN(deviceLon) && !isNaN(deviceLat)) {
|
||||
this.deviceMarker = new this.AMap.Marker({
|
||||
position: [deviceLon, deviceLat],
|
||||
content: `<div class="marker-content"><i class="el-icon-bicycle" style="color: #67C23A; font-size: 25px;"></i></div>`,
|
||||
content: `<div class="marker-content"><i class="el-icon-truck" style="color: #67C23A; font-size: 25px;"></i></div>`,
|
||||
offset: new this.AMap.Pixel(-16, -16),
|
||||
title: '设备位置'
|
||||
});
|
||||
|
|
|
@ -85,13 +85,13 @@
|
|||
<collapse-panel :value="true" title="续航信息">
|
||||
<el-descriptions :column="4">
|
||||
<el-descriptions-item label="模块电量">{{ detail.remainingPower | fix2 | dv }} %</el-descriptions-item>
|
||||
<el-descriptions-item label="当前电压">{{ detail.voltage | fix2 | dv }} V</el-descriptions-item>
|
||||
<el-descriptions-item label="模块电压">{{ detail.voltage | fix2 | dv }} V</el-descriptions-item>
|
||||
<el-descriptions-item label="剩余续航">{{ detail.remainEndurance | fix2 | dv }} KM</el-descriptions-item>
|
||||
<el-descriptions-item label="满电电压">{{ detail.modelFullVoltage | fix2 | dv }} V</el-descriptions-item>
|
||||
<el-descriptions-item label="亏电电压">{{ detail.modelLowVoltage | fix2 | dv }} V</el-descriptions-item>
|
||||
<el-descriptions-item label="满电续航">{{ detail.modelFullEndurance | dv }} KM</el-descriptions-item>
|
||||
<el-descriptions-item label="车辆电池">{{ detail.carBat | fix2 | dv }} %</el-descriptions-item>
|
||||
<el-descriptions-item label="车辆续航">{{ detail.carMile | fix2 | dv }} km</el-descriptions-item>
|
||||
<el-descriptions-item label="车辆续航">{{ detail.carMile | fix2 | dv }} h</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</collapse-panel>
|
||||
</el-card>
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
class="stat-card"
|
||||
:value="stat.deviceCount"
|
||||
label="车辆总数"
|
||||
icon="el-icon-bicycle"
|
||||
icon="el-icon-truck"
|
||||
start-color="#61DDAA"
|
||||
end-color="#4CAF50"
|
||||
sub-label="车型总数"
|
||||
|
|
|
@ -57,7 +57,7 @@ export default {
|
|||
color: '#6DC8EC' // 淡青色,表示在仓库
|
||||
},
|
||||
[DeviceStatus.AVAILABLE]: {
|
||||
icon: 'el-icon-bicycle',
|
||||
icon: 'el-icon-truck',
|
||||
color: '#61DDAA' // 柔和绿色,表示可用
|
||||
},
|
||||
[DeviceStatus.RESERVED]: {
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
</div>
|
||||
</el-col>
|
||||
<el-col :span="8" class="mini-stat-card">
|
||||
<div class="icon-bg purple"><i class="el-icon-bicycle"></i></div>
|
||||
<div class="icon-bg purple"><i class="el-icon-truck"></i></div>
|
||||
<div class="stat-info">
|
||||
<div class="mini-label">进行中</div>
|
||||
<div class="mini-value">{{ orderProcessingCount | dv }}</div>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<el-col :sm="24" :md="13" class="detail-stat-row">
|
||||
<el-row>
|
||||
<el-col :span="miniSpan" class="mini-stat-card">
|
||||
<div class="icon-bg blue"><i class="el-icon-bicycle"></i></div>
|
||||
<div class="icon-bg blue"><i class="el-icon-truck"></i></div>
|
||||
<div class="stat-info">
|
||||
<div class="mini-label">
|
||||
骑行费
|
||||
|
|
|
@ -31,7 +31,7 @@ export default {
|
|||
color: '#5B8FF9' // 柔和蓝色,表示待支付
|
||||
},
|
||||
[OrderStatus.PROCESSING]: {
|
||||
icon: 'el-icon-bicycle',
|
||||
icon: 'el-icon-truck',
|
||||
color: '#61DDAA' // 柔和绿色,表示进行中
|
||||
},
|
||||
[OrderStatus.FINISHED]: {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<el-col>
|
||||
<el-statistic title="骑行费" :value="detail.ridingFee" :precision="2" suffix="元">
|
||||
<template slot="prefix">
|
||||
<i class="el-icon-bicycle" style="color: #409EFF"></i>
|
||||
<i class="el-icon-truck" style="color: #409EFF"></i>
|
||||
</template>
|
||||
</el-statistic>
|
||||
</el-col>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
class="stat-item"
|
||||
:value="stat.device.count"
|
||||
label="车辆数"
|
||||
icon="el-icon-bicycle"
|
||||
icon="el-icon-truck"
|
||||
start-color="#45B7D1"
|
||||
end-color="#2F80ED"
|
||||
:height="height"
|
||||
|
|
Loading…
Reference in New Issue
Block a user