| | |
| | | <view class="header"> |
| | | <view class="item"> |
| | | <view class="title">{{accumulated_duration}}<text class="text">min</text></view> |
| | | <view class="text">累计时长</view> |
| | | <view class="text">{{translate("cumulative_duration")}}</view> |
| | | </view> |
| | | <view class="item"> |
| | | <view class="title">{{accumulated_mileage}}<text class="text">m</text></view> |
| | | <view class="text">累计里程</view> |
| | | <view class="text">{{translate("accumulated_mileage")}}</view> |
| | | </view> |
| | | <view class="item"> |
| | | <view class="title">{{cumulative_number}}</view> |
| | | <view class="text">累计次数</view> |
| | | <view class="text">{{translate("cumulative_count")}}</view> |
| | | </view> |
| | | </view> |
| | | <view class="list"> |
| | |
| | | uni.navigateTo({ |
| | | url: "/pages/task/map-task" |
| | | }) |
| | | } |
| | | }, |
| | | translate(t) { |
| | | if (typeof this.$t == "function") return this.$t(`page.${t}`) |
| | | else return t; |
| | | }, |
| | | |
| | | } |
| | | } |