travelingTrack.vue 6.5 KB

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