travelingTrack.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="container-view">
  3. <navBar :name="$t('最近骑行')" />
  4. <!-- #ifdef MP-WEIXIN -->
  5. <map class="my_app" id="myMap" :longitude="myLocation.longitude" :latitude="myLocation.latitude" :scale="scale"
  6. :markers="markers" :enable-satellite="mapParams.enableSatellite" :enable-traffic="mapParams.enableTraffic"
  7. show-location :polyline="polylines" enable-3D show-compass enable-overlooking @markertap="bindMarkertap"
  8. style="width: 100%;height: 50vh;">
  9. </map>
  10. <!-- #endif -->
  11. <!-- #ifdef APP -->
  12. <googleMap keyId="1" width="100%" height='calc(50vh - 0rpx)' v-if="myLocation.latitude && mapShow" :mapData='{
  13. markers,
  14. zoom:17,
  15. type:3,
  16. polylines
  17. }' :myLocations='myLocation'></googleMap>
  18. <!-- #endif -->
  19. <view class="car-info">
  20. <view class="info-top flex-row flex-between">
  21. <view class="top-left f">
  22. <view>{{carInfo.car_name}}</view>
  23. <view>{{ $t('车牌号:') }}{{carInfo.license_plate_number}}</view>
  24. </view>
  25. <view>
  26. <image class="img"
  27. :src="carInfo.model_images || 'https://qiniu.bms16.com/FguJzvAGtd4AdhDKXVLUo7XiMxWQ'"
  28. mode="aspectFit"></image>
  29. </view>
  30. </view>
  31. <view class="ctime">{{time}}</view>
  32. <view class="info-center flex-row">
  33. <view class="center-left flex-row">
  34. <view></view>
  35. <view></view>
  36. <view></view>
  37. </view>
  38. <view class="center-right">
  39. <view class="address-name-style">{{star_address}}</view>
  40. <view class="address-name-style">{{end_address}}</view>
  41. </view>
  42. </view>
  43. <view class="info-bottom flex-row flex-between">
  44. <view class="bottom-item">
  45. <view>{{trackInfo.total_mil}}<text>km</text></view>
  46. <view>{{ $t('行驶里程') }}</view>
  47. </view>
  48. <view class="bottom-item">
  49. <view>{{tools.toFix((trackInfo.total_time || 0) / 60 / 60)}}<text>h</text></view>
  50. <view>{{ $t('骑行时长') }}</view>
  51. </view>
  52. <view class="bottom-item">
  53. <view>{{trackInfo.avg_speed}}<text>km/h</text></view>
  54. <view>{{ $t('平均时速') }}</view>
  55. </view>
  56. <!-- <view class="bottom-item">
  57. <view>40.0<text>g</text></view>
  58. <view>{{ $t('减少碳排量') }}</view>
  59. </view> -->
  60. </view>
  61. </view>
  62. </view>
  63. </template>
  64. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  65. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  66. <script>
  67. import googleMap from "@/component/googleMap/googleMap";
  68. var common = require('../../common/common.js');
  69. var amap = require('../../common/amap-wx.js');
  70. var config = require('../../common/config.js');
  71. var config_gyq = require('../../common/config_gyq.js');
  72. var http = require('../../common/http.js');
  73. var request = require('../../common/request.js');
  74. var storage = require('../../common/storage.js');
  75. export default {
  76. components: {
  77. googleMap,
  78. },
  79. data() {
  80. return {
  81. mapShow:false,
  82. time:this.$t('未知'),
  83. carInfo: {},
  84. id: 0, // 使用 marker点击事件 需要填写id
  85. title: 'map',
  86. // markers: [],
  87. mapParams: {
  88. enableSatellite: false,
  89. // 是否开启卫星图
  90. enableTraffic: false // 是否开启实时路况
  91. },
  92. myInfo: {},
  93. star_address: '',
  94. end_address: '',
  95. address: {},
  96. scale: 16,
  97. devicelist: [],
  98. devs: [],
  99. pointsList: [],
  100. points: [],
  101. pointIndex: 0,
  102. isPageUnloaded: false,
  103. polylines: {}, // 路线
  104. markers: [], // 标记点
  105. trackInfo: {},
  106. plate_number: ''
  107. };
  108. },
  109. /**
  110. * 生命周期函数--监听页面加载
  111. */
  112. onLoad(options) {
  113. this.carInfo = uni.getStorageSync('car_info')
  114. this.plate_number = options.plate_number
  115. const me = this
  116. // common.loading();
  117. // const storedLocation = uni.getStorageSync('user_current_location');
  118. // if (storedLocation.longitude && storedLocation.latitude) {
  119. // // 如果本地有存储的定位信息,则直接使用
  120. // this.setData({
  121. // myLocation: storedLocation
  122. // })
  123. // // this.loadTrackInfo()
  124. // } else {
  125. // this.getLocationAndSave();
  126. // }
  127. this.init()
  128. },
  129. /**
  130. * 生命周期函数--监听页面显示
  131. */
  132. onShow: function() {
  133. },
  134. methods: {
  135. async init() {
  136. let {
  137. data
  138. } = await request.postApi(config_gyq.API_CAR_TRACK_INFO, {
  139. car_sn: this.carInfo.car_sn,
  140. })
  141. if (data.code == 200) {
  142. this.trackInfo = data.data
  143. this.pointsList = data.data.points.map(item => {
  144. return {
  145. ...item,
  146. lng: item.longitude,
  147. lat: item.latitude,
  148. }
  149. })
  150. if(this.pointsList.length < 1){
  151. common.simpleToast(this.$t('暂无骑行数据!'))
  152. setTimeout(function() {
  153. uni.navigateBack({
  154. delta: 1
  155. });
  156. }, 800);
  157. return
  158. }
  159. //接口返回描绘线段
  160. this.polylines = {
  161. points: this.pointsList,
  162. color: "#0BD28E",
  163. width: 6
  164. }
  165. if(this.pointsList.length > 0){
  166. this.time = this.pointsList[0].time
  167. }
  168. if (this.pointsList.length >= 2) {
  169. const len = this.pointsList.length - 1
  170. //点收尾标记
  171. this.markers = [{
  172. id: 1,
  173. latitude: this.pointsList[0].latitude,
  174. longitude: this.pointsList[0].longitude,
  175. iconPath: 'https://qiniu.bms16.com/Fo5xXb4G6AEQpRcqZybvV29jVvIw',
  176. width: 30,
  177. height: 40
  178. }, {
  179. id: 2,
  180. latitude: this.pointsList[len].latitude,
  181. longitude: this.pointsList[len].longitude,
  182. iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
  183. width: 30,
  184. height: 34
  185. }]
  186. this.getAddressName(this.pointsList[0].latitude, this.pointsList[0].longitude, 1)
  187. this.getAddressName(this.pointsList[len].latitude, this.pointsList[len].longitude, 2)
  188. } else {
  189. this.markers = [{
  190. id: 2,
  191. latitude: this.pointsList[0] ? this.pointsList[0].latitude : this.myLocation
  192. .latitude,
  193. longitude: this.pointsList[0] ? this.pointsList[0].longitude : this.myLocation
  194. .longitude,
  195. iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
  196. width: 48,
  197. height: 52
  198. }]
  199. // 这里的markers的length只为1
  200. this.getAddressName(this.markers[0].latitude, this.markers[0].longitude, 1)
  201. }
  202. this.mapShow = true
  203. }
  204. },
  205. getAddressName(latitude, longitude, type) {
  206. const pData = {
  207. lng: longitude,
  208. lat: latitude,
  209. pi: "wx_index"
  210. }
  211. const that = this
  212. http.postApi(config.API_MAP_REGEO, pData, (resp) => {
  213. if (resp.data.code === 200) {
  214. if (type == 1) {
  215. that.star_address = resp.data.data.data.address
  216. // that.setData({
  217. // star_address: resp.data.data.data.address
  218. // });
  219. } else {
  220. that.setData({
  221. end_address: resp.data.data.data.address
  222. });
  223. }
  224. } else {
  225. common.simpleToast(resp.data.msg)
  226. }
  227. })
  228. },
  229. getLocationAndSave: function() {
  230. const me = this;
  231. uni.getLocation({
  232. type: 'gcj02',
  233. isHighAccuracy: true,
  234. success: function(res) {
  235. uni.hideLoading();
  236. var myLocation = {
  237. longitude: res.longitude,
  238. latitude: res.latitude
  239. }
  240. this.setData({
  241. myLocation: myLocation
  242. })
  243. // this.loadTrackInfo()
  244. uni.setStorageSync('user_current_location', myLocation);
  245. },
  246. fail: function(res) {
  247. uni.hideLoading();
  248. },
  249. complete: function(res) {
  250. uni.hideLoading();
  251. }
  252. });
  253. },
  254. navToPage(e) {
  255. const url = e.currentTarget.dataset.url;
  256. if (!url) {
  257. return;
  258. }
  259. uni.navigateTo({
  260. url: url
  261. });
  262. },
  263. }
  264. };
  265. </script>
  266. <style>
  267. @import './travelingTrack.css';
  268. </style>