carLocation.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="">
  3. <navBar name="车辆位置"></navBar>
  4. <!-- #ifndef APP -->
  5. <map @touchmove="hiddenNav" @markertap="showNav" style="width: 100%; height: calc(100vh - 506rpx);" :latitude="latitude"
  6. :longitude="longitude" :markers="markers" show-location>
  7. </map>
  8. <!-- #endif -->
  9. <!-- #ifdef APP -->
  10. <googleMap keyId="1" width='100%' height='calc(100vh - 506rpx)' v-if="myLocation.latitude" :mapData="{type:3,markers,zoom:13}" :myLocations='myLocation'></googleMap>
  11. <!-- #endif -->
  12. <!-- 由于cover-view一些样式及点击事件不支持 -->
  13. <!-- 气泡内容 -->
  14. <view v-if="is_show_nav" class="block-view">
  15. <view class="custom-bubble-name">{{address}}</view>
  16. <view class="flex-row" style="justify-content: flex-end;">
  17. <!-- <view class="flex-row block-car-time align-center">
  18. <img style="width: 52rpx;height: 52rpx;" src="https://qiniu.bms16.com/FhKkijkN__9UzhYNgamBFSggIlYo" alt="">
  19. <text class="car-time-text">已驻车 <text class="car-time-text-b">9</text>分钟</text>
  20. </view> -->
  21. <view class="" @tap="navAddress"><img style="width: 112rpx;height: 64rpx;" src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt=""></view>
  22. </view>
  23. <view v-if="car_info.heart_time" class="updata-time">更新于 {{car_info.heart_time}} </view>
  24. <view @tap="findCar" class="car-config-btn">闪灯鸣笛</view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import dayjs from "dayjs";
  30. import googleMap from "@/component/googleMap/googleMap";
  31. const http = require('../../common/request.js');
  32. const config = require('../../common/config.js');
  33. const common = require('../../common/common.js');
  34. import controlMixin from '@/mixin/index';
  35. export default {
  36. mixins: [controlMixin],
  37. components:{
  38. googleMap
  39. },
  40. data() {
  41. return {
  42. id: 0, // 使用 marker点击事件 需要填写id
  43. latitude: 39.909,
  44. longitude: 116.39742,
  45. address: '',
  46. city_name: '',
  47. is_show_nav: true,
  48. car_info:{},
  49. myLocation:{},
  50. markers: [], // 标记点
  51. plate_number: '',
  52. carLocationTimer: null, // 定时器变量,用于清除定时器
  53. }
  54. },
  55. /**
  56. * 生命周期函数--监听页面加载
  57. */
  58. onLoad: function(options) {
  59. this.car_info = uni.getStorageSync('car_info') || {}
  60. this.car_info.heart_time = this.car_info.heart_time ? dayjs(this.car_info.heart_time*1000).format('YYYY-MM-DD hh:mm:ss') : '未知时间'
  61. this.init()
  62. // this.longitude = {
  63. // longitude:car_info.longitude,
  64. // latitude:car_info.latitude
  65. // }
  66. // this.plate_number = options.plate_number
  67. // this.latitude=options.latitude||''
  68. // this.longitude=options.longitude||''
  69. // this.loadCarAddress()
  70. // // 五秒后重新调用加载车辆位置信息的方法
  71. // this.carLocationTimer = setTimeout(() => {
  72. // this.loadCarAddress();
  73. // }, 5000)
  74. },
  75. /**
  76. * 生命周期函数--监听页面显示
  77. */
  78. onShow: function() {},
  79. /**
  80. * 生命周期函数--监听页面卸载
  81. */
  82. onUnload() {
  83. // 页面卸载时清除定时器
  84. if (this.carLocationTimer) {
  85. clearTimeout(this.carLocationTimer);
  86. this.carLocationTimer = null; // 确保定时器引用被清除
  87. }
  88. },
  89. methods: {
  90. init(){
  91. this.latitude = this.car_info.latitude || 39.909
  92. this.longitude = this.car_info.longitude || 116.39742
  93. this.getAddressName(this.latitude,this.longitude)
  94. let _this = this
  95. uni.getLocation({
  96. success(res) {
  97. _this.myLocation.latitude = res.latitude
  98. _this.myLocation.longitude = res.longitude
  99. _this.markers = [
  100. {
  101. width: 80 / 2,
  102. height: 108 / 2,
  103. id: _this.car_info.car_sn,
  104. longitude: _this.longitude,
  105. latitude: _this.latitude,
  106. iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
  107. iconPathActive: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
  108. content:''
  109. },
  110. {
  111. width: 22,
  112. height: 40,
  113. id: 50000,
  114. iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
  115. longitude: res.longitude,
  116. latitude: res.latitude,
  117. }
  118. ]
  119. }
  120. })
  121. },
  122. navAddress() {
  123. const that = this;
  124. uni.openLocation({
  125. latitude: that.latitude - 0,
  126. longitude: that.longitude - 0,
  127. scale: 15,
  128. name: that.city_name,
  129. address: that.address_name,
  130. success: function(res) {}
  131. });
  132. },
  133. async loadCarAddress() {
  134. const that = this
  135. http.postApi(config.API_DAYHIRE_CAR_LOCATION, {
  136. plate_number: this.plate_number
  137. }, (resp) => {
  138. if (resp.data.code === 200) {
  139. this.latitude = resp.data.data.latitude
  140. this.longitude = resp.data.data.longitude
  141. this.markers[0].latitude = resp.data.data.latitude
  142. this.markers[0].longitude = resp.data.data.longitude
  143. } else {
  144. // 默认返回上一个页面再提示报错
  145. uni.navigateBack({
  146. delta: 1
  147. })
  148. common.simpleToast(resp.data.msg)
  149. }
  150. })
  151. },
  152. async getAddressName(latitude, longitude) {
  153. const that = this
  154. //#ifdef MP-ALIPAY
  155. var _pi = "ali_index"
  156. //#endif
  157. //#ifdef MP-WEIXIN
  158. var _pi = "wx_index"
  159. //#endif
  160. //#ifdef APP
  161. var _pi = "APP"
  162. //#endif
  163. const location = {
  164. lat: that.latitude,
  165. lng: that.longitude,
  166. pi: _pi
  167. }
  168. let {data} = await http.postApi(config.API_MAP_REGEO, location)
  169. console.log(data.data.data)
  170. if(data.code == 200){
  171. this.address = data.data.data.address
  172. }
  173. },
  174. hiddenNav() {
  175. this.is_show_nav = false
  176. },
  177. showNav() {
  178. this.is_show_nav = true
  179. },
  180. findCar(){
  181. const me=this
  182. uni.showModal({
  183. title: '提示',
  184. content: '您确认开启闪灯鸣笛吗',
  185. showCancel: true,
  186. cancelText: '取消',
  187. confirmText: '确定',
  188. success: function(res) {
  189. if (res.confirm) {
  190. me.setData({
  191. popText:'闪灯鸣笛',
  192. cmdType:'findCar',
  193. })
  194. me.tapBlueToothCmd('',true)
  195. }
  196. },
  197. fail: function(res) {},
  198. complete: function(res) {},
  199. })
  200. },
  201. navAddress(){
  202. const {
  203. latitude,
  204. longitude,
  205. cityname,
  206. address,
  207. model_name
  208. } = this.car_info
  209. uni.openLocation({
  210. latitude: latitude - 0,
  211. longitude: longitude - 0,
  212. scale: 15,
  213. name:model_name,
  214. address: address,
  215. success: function(res) {}
  216. });
  217. }
  218. }
  219. };
  220. </script>
  221. <style>
  222. @import './carLocation.css';
  223. </style>