travelingTrack.vue 7.6 KB

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