|
@@ -8,55 +8,55 @@
|
|
|
<u-image class="cell-item-pic" src="/static/md-big-pic.png" width="100rpx" height="100rpx"></u-image>
|
|
|
<view class="cell-item-info">
|
|
|
<view class="cell-item-info-network">{{item.stationName || '--'}}</view>
|
|
|
- <view class="cell-item-info-weight">清运总重量:<text>{{ (item.totalWeight/1000).toFixed(2) }}kg</text></view>
|
|
|
+ <view class="cell-item-info-weight">清运总重量:<text>{{ (item.totalWeight/1000).toFixed(3) }}kg</text></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<u-grid :col="3" :hover-class="none">
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number blue">{{ item.clothes ? (item.clothes/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number blue">{{ item.clothes ? (item.clothes/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧衣物</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number green">{{ item.paper ? (item.paper/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number green">{{ item.paper ? (item.paper/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧纸张</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number red">{{ item.plastic ? (item.plastic/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number red">{{ item.plastic ? (item.plastic/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧塑料</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number yellow">{{ item.metal ? (item.metal/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number yellow">{{ item.metal ? (item.metal/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧金属</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number yellow">{{ item.plaMet ? (item.plaMet/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number yellow">{{ item.plaMet ? (item.plaMet/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧金属/塑料</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number yellow">{{ item.glass ? (item.glass/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number yellow">{{ item.glass ? (item.glass/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">废旧玻璃</view>
|
|
|
</u-grid-item>
|
|
|
<u-grid-item>
|
|
|
<view class="cell-item-main">
|
|
|
- <text class="cell-item-number yellow">{{ item.recycling ? (item.recycling/1000).toFixed(2) : 0 }}</text>
|
|
|
+ <text class="cell-item-number yellow">{{ item.recycling ? (item.recycling/1000).toFixed(3) : 0 }}</text>
|
|
|
<text class="cell-item-unit">kg</text>
|
|
|
</view>
|
|
|
<view class="cell-item-exp">可回收物</view>
|