|
|
@@ -81,18 +81,18 @@
|
|
|
<!-- 统计数据 -->
|
|
|
<view class="stats-content">
|
|
|
<view class="total-hours" v-if="orderTypeFilter === ''">
|
|
|
- <text class="hours-value">{{ totalHours }}小时</text>
|
|
|
+ <text class="hours-value">{{ formatNumber(totalHours) }}小时</text>
|
|
|
<text class="hours-label">{{ timeRangeTitle }}总工时</text>
|
|
|
</view>
|
|
|
|
|
|
<view class="hours-breakdown">
|
|
|
<view v-if="orderTypeFilter !== '1'" class="breakdown-item">
|
|
|
<text class="breakdown-label">维保工时</text>
|
|
|
- <text class="breakdown-value">{{ maintenanceHours }}小时</text>
|
|
|
+ <text class="breakdown-value">{{ formatNumber(maintenanceHours) }}小时</text>
|
|
|
</view>
|
|
|
<view v-if="orderTypeFilter !== '2'" class="breakdown-item">
|
|
|
<text class="breakdown-label">维修工时</text>
|
|
|
- <text class="breakdown-value">{{ repairHours }}小时</text>
|
|
|
+ <text class="breakdown-value">{{ formatNumber(repairHours) }}小时</text>
|
|
|
</view>
|
|
|
<!-- <view v-if="rank !== null && totalRankingUsers !== null" class="breakdown-item">
|
|
|
<text class="breakdown-label">排名</text>
|