|
@@ -15,11 +15,13 @@
|
|
|
type:3,
|
|
|
polylines
|
|
|
}' :myLocation='myLocation'></googleMap>
|
|
|
+
|
|
|
+ <!-- <googleMaps width="100%" height='calc(50vh - 0rpx)' :myLocations='myLocation'></googleMaps> -->
|
|
|
<!-- #endif -->
|
|
|
|
|
|
<view class="car-info">
|
|
|
<view class="info-top flex-row flex-between">
|
|
|
- <view class="top-left">
|
|
|
+ <view class="top-left f">
|
|
|
<view>{{carInfo.car_name}}</view>
|
|
|
<view>车牌号:{{carInfo.license_plate_number}}</view>
|
|
|
</view>
|
|
@@ -43,11 +45,11 @@
|
|
|
</view>
|
|
|
<view class="info-bottom flex-row flex-between">
|
|
|
<view class="bottom-item">
|
|
|
- <view>{{trackInfo.total_mil}}<text>km</text></view>
|
|
|
+ <view>{{(trackInfo.total_mil / 1000).toFixed(2)}}<text>km</text></view>
|
|
|
<view>行驶里程</view>
|
|
|
</view>
|
|
|
<view class="bottom-item">
|
|
|
- <view>{{tools.toFix((trackInfo.using_time || 0) /3600)}}<text>h</text></view>
|
|
|
+ <view>{{tools.toFix((trackInfo.total_time || 0) / 3600)}}<text>h</text></view>
|
|
|
<view>骑行时长</view>
|
|
|
</view>
|
|
|
<view class="bottom-item">
|
|
@@ -65,7 +67,7 @@
|
|
|
<script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
|
|
|
<script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
|
|
|
<script>
|
|
|
- import googleMap from "@/component/googleMap/googleMap";
|
|
|
+ import googleMaps from "@/component/googleMap/googleMaps";
|
|
|
var common = require('../../common/common.js');
|
|
|
var amap = require('../../common/amap-wx.js');
|
|
|
var config = require('../../common/config.js');
|
|
@@ -75,7 +77,7 @@
|
|
|
var storage = require('../../common/storage.js');
|
|
|
export default {
|
|
|
components: {
|
|
|
- googleMap,
|
|
|
+ googleMaps,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|