|
|
@@ -1,9 +1,8 @@
|
|
|
-<template xmlns="http://www.w3.org/1999/html">
|
|
|
+<template>
|
|
|
<view class="station_item"
|
|
|
@click="handleNavStation(item)">
|
|
|
<view class="station_item-title">
|
|
|
- <text class="font13">{{ item.stationName }}</text>
|
|
|
- <text class="station_item-content-left-label-left_count">空闲:{{ item.idleParkingNum }}/{{ item.parkingNum }}</text>
|
|
|
+ <text class="font16 ">{{ item.stationName }}</text>
|
|
|
</view>
|
|
|
|
|
|
<view class="station_item-status">
|
|
|
@@ -14,7 +13,8 @@
|
|
|
<view class="station_item-content-left">
|
|
|
<view class="station_item-content-left-label">
|
|
|
<view class="font12 station_item-content-left-label-left">
|
|
|
- <text class="station_item-content-left-label-left_idle">{{ fmtDictName('WashStation.status', item.stationStatus) }} {{item.businessHours}}</text>
|
|
|
+ <text class="station_item-content-left-label-left_idle">{{ fmtDictName('WashStation.status', item.stationStatus) }}</text>
|
|
|
+ <text class="station_item-content-left-label-left_count">{{ item.idleParkingNum }}/{{ item.parkingNum }}</text>
|
|
|
</view>
|
|
|
<!-- <uv-tags size="small" class="station_item-content-left-label_tag" text="洗车机" plain shape="circle"></uv-tags>-->
|
|
|
<!-- <view class="station_item-content-left-label_func">{{ ['清洁', '泡沫', '吸尘', '消毒', '充电']?.join(" | ") }}</view>-->
|
|
|
@@ -29,7 +29,7 @@
|
|
|
style="width: 20px; height: 20px;color: #eeeeee;"
|
|
|
src="/static/nav.png"
|
|
|
/>-->
|
|
|
- <uv-icon name="map" color="#19A497"></uv-icon>
|
|
|
+<!-- <uv-icon name="map" color="#C6171E"></uv-icon>-->
|
|
|
<text class="font12" @click.stop="handleNavMap(item)">{{ item.distance }}km</text>
|
|
|
<!-- <uv-tags text="1222km" type="warning" plain size="mini"></uv-tags>-->
|
|
|
</view>
|
|
|
@@ -94,6 +94,7 @@ const handleNavStation = (station: any) => {
|
|
|
&-title {
|
|
|
display: inline-flex;
|
|
|
padding-left: 5px;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
|
|
|
&-status {
|