travelingTrack.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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 config_gyq = require('../../common/config_gyq.js');
  56. var http = require('../../common/http.js');
  57. var request = require('../../common/request.js');
  58. var storage = require('../../common/storage.js');
  59. export default {
  60. data() {
  61. return {
  62. id: 0, // 使用 marker点击事件 需要填写id
  63. title: 'map',
  64. // markers: [],
  65. mapParams: {
  66. enableSatellite: false,
  67. // 是否开启卫星图
  68. enableTraffic: false // 是否开启实时路况
  69. },
  70. myInfo: {},
  71. myLocation: {
  72. latitude: 39.910925,
  73. longitude: 116.413384,
  74. },
  75. star_address: '',
  76. end_address: '',
  77. address: {},
  78. scale: 16,
  79. devicelist: [],
  80. devs: [],
  81. pointsList: [],
  82. points: [],
  83. pointIndex: 0,
  84. isPageUnloaded: false,
  85. polylines: [], // 路线
  86. markers: [], // 标记点
  87. trackInfo: {},
  88. plate_number: ''
  89. };
  90. },
  91. /**
  92. * 生命周期函数--监听页面加载
  93. */
  94. onLoad(options) {
  95. console.log(uni.getStorageSync('car_info'))
  96. this.plate_number = options.plate_number
  97. const me = this
  98. // common.loading();
  99. const storedLocation = uni.getStorageSync('user_current_location');
  100. if (storedLocation.longitude && storedLocation.latitude) {
  101. // 如果本地有存储的定位信息,则直接使用
  102. me.setData({
  103. myLocation: storedLocation
  104. })
  105. me.loadTrackInfo()
  106. } else {
  107. me.getLocationAndSave();
  108. }
  109. this.init()
  110. },
  111. /**
  112. * 生命周期函数--监听页面显示
  113. */
  114. onShow: function() {
  115. },
  116. methods: {
  117. async init() {
  118. let {
  119. data
  120. } = await request.postApi(config_gyq.API_DEVICE_TRACK, {
  121. "macid": "013656219992",
  122. "from": 1742572800,
  123. "to": 1742659199,
  124. "language": ""
  125. })
  126. console.log(data)
  127. },
  128. loadTrackInfo() {
  129. const me = this
  130. http.postApi(config.API_DAYHIRE_CAR_TRACK_INFO, {
  131. plate_number: this.plate_number
  132. }, (resp) => {
  133. if (resp.data.code === 200) {
  134. me.trackInfo = resp.data.data
  135. me.pointsList = resp.data.data.points
  136. //接口返回描绘线段
  137. me.polylines = [{
  138. points: resp.data.data.points,
  139. color: "#0BD28E",
  140. width: 6
  141. }]
  142. if (me.pointsList.length >= 2) {
  143. const len = me.pointsList.length - 1
  144. //点收尾标记
  145. me.markers = [{
  146. id: 1,
  147. latitude: me.pointsList[0].latitude,
  148. longitude: me.pointsList[0].longitude,
  149. iconPath: 'https://qiniu.bms16.com/Fo5xXb4G6AEQpRcqZybvV29jVvIw',
  150. width: 30,
  151. height: 40
  152. }, {
  153. id: 2,
  154. latitude: me.pointsList[len].latitude,
  155. longitude: me.pointsList[len].longitude,
  156. iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
  157. width: 30,
  158. height: 34
  159. }]
  160. me.getAddressName(me.pointsList[0].latitude, me.pointsList[0].longitude, 1)
  161. me.getAddressName(me.pointsList[len].latitude, me.pointsList[len].longitude, 2)
  162. } else {
  163. me.markers = [{
  164. id: 2,
  165. latitude: me.pointsList[0] ? me.pointsList[0].latitude : me.myLocation
  166. .latitude,
  167. longitude: me.pointsList[0] ? me.pointsList[0].longitude : me.myLocation
  168. .longitude,
  169. iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
  170. width: 48,
  171. height: 52
  172. }]
  173. // 这里的markers的length只为1
  174. me.getAddressName(me.markers[0].latitude, me.markers[0].longitude, 1)
  175. }
  176. console.log(me.markers, 'me.markers');
  177. } else {
  178. // 默认返回上一个页面再提示报错
  179. // uni.navigateBack({
  180. // delta: 1
  181. // })
  182. common.simpleToast(resp.data.msg)
  183. }
  184. })
  185. },
  186. getAddressName(latitude, longitude, type) {
  187. const pData = {
  188. lng: longitude,
  189. lat: latitude,
  190. pi: "wx_index"
  191. }
  192. const that = this
  193. http.postApi(config.API_MAP_REGEO, pData, (resp) => {
  194. if (resp.data.code === 200) {
  195. if (type == 1) {
  196. that.star_address = resp.data.data.data.address
  197. // that.setData({
  198. // star_address: resp.data.data.data.address
  199. // });
  200. } else {
  201. that.setData({
  202. end_address: resp.data.data.data.address
  203. });
  204. }
  205. } else {
  206. common.simpleToast(resp.data.msg)
  207. }
  208. })
  209. },
  210. getLocationAndSave: function() {
  211. const me = this;
  212. uni.getLocation({
  213. type: 'gcj02',
  214. isHighAccuracy: true,
  215. success: function(res) {
  216. uni.hideLoading();
  217. var myLocation = {
  218. longitude: res.longitude,
  219. latitude: res.latitude
  220. }
  221. me.setData({
  222. myLocation: myLocation
  223. })
  224. me.loadTrackInfo()
  225. uni.setStorageSync('user_current_location', myLocation);
  226. },
  227. fail: function(res) {
  228. uni.hideLoading();
  229. },
  230. complete: function(res) {
  231. uni.hideLoading();
  232. }
  233. });
  234. },
  235. navToPage(e) {
  236. const url = e.currentTarget.dataset.url;
  237. if (!url) {
  238. return;
  239. }
  240. uni.navigateTo({
  241. url: url
  242. });
  243. },
  244. }
  245. };
  246. </script>
  247. <style>
  248. @import './travelingTrack.css';
  249. </style>