travelingTrack.vue 7.6 KB

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