index.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. <template>
  2. <view>
  3. <!-- #ifdef APP -->
  4. <u-no-network zIndex='9' @retry='retry'></u-no-network>
  5. <!-- #endif -->
  6. <view v-if="isConnected">
  7. <block v-if="isLogin && car_info.car_sn">
  8. <view class="container-view">
  9. <view class="header_view">
  10. <!-- #ifdef MP-WEIXIN -->
  11. <view :style="{height: `${statusBarHeight + 30}px`}"></view>
  12. <!-- #endif -->
  13. <!-- #ifdef APP -->
  14. <view :style="{height: `${statusBarHeight}px`}"></view>
  15. <!-- #endif -->
  16. <!-- <navBar type="index" /> -->
  17. <view class="flex-row flex-between align-center padding_about_40">
  18. <view class="car-name-view" @tap="navSwitchCar">
  19. <text class="text" style="margin-right: 10rpx;">{{car_info.car_name}}</text>
  20. <img src="https://qiniu.bms16.com/FoSXDpVGvbdmwbX3CMUBvR7X4IzI"
  21. style="width: 14rpx;height: 14rpx;" alt="">
  22. </view>
  23. <view @click="routerLink('/pages/message/index?isSys=0')" class="news">
  24. <view v-if="newsList.device_count > 0" class="num">
  25. {{ newsList.device_count}}
  26. </view>
  27. <image src="https://qiniu.bms16.com/FtlfBtBE5-TeTI5EdrciX_u8u_Sx"
  28. style="width: 48rpx;height: 48rpx;" mode=""></image>
  29. </view>
  30. </view>
  31. </view>
  32. <view>
  33. <!-- #ifdef MP-WEIXIN -->
  34. <view :style="{height: `${statusBarHeight + 80}px`}"></view>
  35. <!-- #endif -->
  36. <!-- #ifdef APP -->
  37. <view :style="{height: `${statusBarHeight + 50}px`}"></view>
  38. <!-- #endif -->
  39. </view>
  40. <view v-if="isOverdueShow" class="overdue-view flex-row flex-between">
  41. <view class="overdue-view-text flex-row">
  42. <text class="overdue-text-left">{{$t("您已逾期")}}
  43. <text class="overdue-num">
  44. <block v-if="car_info.hire_duration_time">
  45. {{car_info.hire_duration_time.day > 0 ? car_info.hire_duration_time.day :'' }}<text
  46. v-if="car_info.hire_duration_time.day>0">{{$t("日")}}</text>{{car_info.hire_duration_time.hour > 0 ? car_info.hire_duration_time.hour :'' }}<text
  47. v-if="car_info.hire_duration_time.hour>0">{{$t("小时")}}</text>{{car_info.hire_duration_time.minute > 0 ? car_info.hire_duration_time.minute :'' }}<text
  48. v-if="car_info.hire_duration_time.minute>0">{{$t("分")}}</text>
  49. </block>
  50. </text>
  51. </text>
  52. <text style="font-size: 24rpx;opacity: 0.5;">{{$t("请及时续费或归还车辆")}}</text>
  53. </view>
  54. <view @click="routerLink('/pages/order/order')" class="renew-btn">{{$t("去续费")}}</view>
  55. </view>
  56. <view class="car-img-view" >
  57. <view v-if="!car_info.sold_time" class="flex-row flex-between" style="align-items: center;">
  58. <text class="quantity flex-row">{{car_info.soc}} <text
  59. style="font-size: 28rpx;font-weight: 500;">%</text></text>
  60. <view @tap.stop="tapReturnCar" class="return-car-btn flex-row">
  61. <image style="width: 46rpx;height: 46rpx;" src="https://qiniu.bms16.com/FtyG7Gq2QBaVVrZmTnmZFzXhE5nN" mode=""></image>
  62. <view style="margin-left: 12rpx;">{{$t("我要还车")}}</view>
  63. </view>
  64. </view>
  65. <view class="quantity-view flex-row">
  66. <u-line-progress style="width: 100rpx;" active-color="#2ADA62" height="10"
  67. :show-percent="false" :percent="car_info.soc"></u-line-progress>
  68. <view class="quantity-text flex-row">
  69. <view style="font-weight:400;font-size: 22rpx;">{{$t("续航")}}</view>
  70. <view style="font-size: 36rpx;">{{formatDistance(car_info.remain_mail) }}<text style="font-size: 30rpx;">{{car_info.remain_mail ? car_info.remain_mail>1000?'km':'m' :'km'}}</text></view>
  71. </view>
  72. </view>
  73. <!-- <img :src="car_info.model_images||'https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX'" style="width: 100%;height: 526rpx;" alt=""> -->
  74. <!-- <img :src="'https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX'"
  75. style="width: 100%;height: 526rpx;" alt=""> -->
  76. <view class="custom-swiper-view">
  77. <u-swiper @click="toMoreInfoPage" :list="car_image" :autoplay="false" mode="none"
  78. :height="480" bgColor="transparent" class="custom-swiper">
  79. </u-swiper>
  80. </view>
  81. <view class="flex-row align-center update-time-view">
  82. <text style="margin-right: 10rpx;">{{car_info.online==1&&car_info.acc_state==1?$t("车辆已开机"): $t("车辆已关机")}} </text>
  83. <text v-if="car_info.heart_time != 0" style="margin-right: 10rpx;">{{$t("更新于")}} {{tools.formatTime( car_info.heart_time|| '')}}</text>
  84. <img v-if="isConnectBlueth" src="https://qiniu.bms16.com/FsL6XWGoIhfsVB7jRg6EGFVsuaTZ"
  85. :style="{width: '24rpx',height: '32rpx'}" alt="">
  86. </view>
  87. </view>
  88. <Control :contrilList="contrilList" :isConnectBlueth="isConnectBlueth" @toBluetooth="inductiveUnlockHandle" @loadCarDetail="loadCarDetail" :isOverdueShow="isOverdueShow"/>
  89. <view :class="['flex-row', 'flex-between', 'map-card-view',car_info.exchange_package_info && car_info.exchange_package_info.activity_time?'height_362':'height_260']">
  90. <MapCard :isShowReturnCar='isShowReturnCar' :car_info="car_info" :height="!!(car_info.exchange_package_info && car_info.exchange_package_info.activity_time)"/>
  91. <view class="card-right">
  92. <view class="card-bg" @tap="navTravelingTrack">
  93. <view class="flex-row flex-between card-top-title">
  94. <view class="flex-row align-center">
  95. <img style="width: 36rpx;height: 36rpx;"
  96. src="https://qiniu.bms16.com/FkrcMCV__HraZ0W0NBNdEZPIlwss" alt="">
  97. <text class="margin_l_8">{{isTrackOrAll?$t("最近骑行"):$t("总里程")}}</text>
  98. </view>
  99. <view @tap.stop="isTrackOrAll=!isTrackOrAll"><img
  100. style="width: 24rpx;height: 20rpx;"
  101. src="https://qiniu.bms16.com/FltPK-o7KGS3dQ2pfQHXGSxOdzaN" alt=""></view>
  102. </view>
  103. <view class="card-top-text">{{isTrackOrAll?car_info.current_mail:car_info.total_mil}}<text class="font_24">km</text>
  104. </view>
  105. </view>
  106. <view v-if="car_info.exchange_package_info && car_info.exchange_package_info.activity_time" class="card-bg">
  107. <view class="flex-row card-top-title">
  108. <img style="width: 36rpx;height: 36rpx;"
  109. src="https://qiniu.bms16.com/FtalApKa3STyruaBxxRB4O9hHXyE" alt="">
  110. <text class="margin_l_8">{{$t("换电套餐")}}</text>
  111. </view>
  112. <view v-if="car_info.package_type == 1" class="card-top-text">
  113. {{calculateRemainingDays(car_info.exchange_package_info.expire_time)}} <text
  114. class="font_24">{{$t("天")}}</text>
  115. </view>
  116. <view v-if="car_info.package_type == 2" class=" card-top-text">{{item.last_num}} <text
  117. class="font_24">{{$t("次")}}</text></view>
  118. <view v-if="car_info.package_type == 3" class=" card-top-text">
  119. {{item.total_day}}{{$t("天")}}/{{item.last_num}} <text
  120. class="font_24">{{$t("次")}}</text>
  121. </view>
  122. </view>
  123. </view>
  124. </view>
  125. <!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'"
  126. :height="'96rpx'" v-model="switchValue" :fetchData="loadData"></custom-switch> -->
  127. <view class="config-view">
  128. <view @tap="navToPage" class="flex-row config-car-view">
  129. <view class="margin_r_20"><img class="icon_style_64"
  130. src="https://qiniu.bms16.com/Ftzyvs5whxDdMFksYChHaWKVb0Uk" alt=""></view>
  131. <view class="flex-row config-text-view" @tap="inductiveUnlockHandle">
  132. <view class="flex-row font_w_600">{{$t("感应解锁")}}</view>
  133. <view class="flex-row tip-text-config">{{isBluethConnect?$t("蓝牙配对成功"):$t("请先连接蓝牙")}}
  134. </view>
  135. </view>
  136. <img class="icon_style_28" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm"
  137. alt="">
  138. </view>
  139. <view @tap="navToPage" data-url="/pages/userManagement/userManagement"
  140. class="flex-row config-car-view">
  141. <view class="margin_r_20"><img class="icon_style_64"
  142. src="https://qiniu.bms16.com/FhKkijkN__9UzhYNgamBFSggIlYo" alt=""></view>
  143. <view class="flex-row config-text-view">
  144. <view class="flex-row font_w_600">{{$t("用车人管理")}}</view>
  145. <view class="flex-row tip-text-config">{{car_info.share_num + $t("个家庭账号")}}</view>
  146. </view>
  147. <img class="icon_style_28" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm"
  148. alt="">
  149. </view>
  150. <view @click="srcFn(`/pages/deviceInfo/deviceInfo`)" class="flex-row config-car-view">
  151. <view class="margin_r_20"><img class="icon_style_64"
  152. src="https://qiniu.bms16.com/FsAg6mHEBJfbtpgIHBrDdNiPo1iH" alt=""></view>
  153. <view class="flex-row config-text-view">
  154. <view class="flex-row font_w_600">{{$t("设备信息")}}</view>
  155. <view class="flex-row tip-text-config">{{$t("软件版本") + (car_info.firmware||'')}}</view>
  156. </view>
  157. <img class="icon_style_28" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm"
  158. alt="">
  159. </view>
  160. </view>
  161. <view style="height: 264rpx;"></view>
  162. </view>
  163. </block>
  164. <block v-else>
  165. <UnleasedPages :model_list="model_list" :img_list="img_list" />
  166. </block>
  167. <BluetoothUnlockAuth ref="bluetoothUnlockAuth" />
  168. <CustomTabbar @changCar='changCar' curt-tab="home" />
  169. <AndroidUnlockAuth :authStepList="authStepList" :value="isShowPermission" @closePermission="closePermission"
  170. v-if="isShowPermission && (platform === 'android')" />
  171. <IosUnlockAuth :authStepList="authStepList" :value="isShowPermission" @closePermission="closePermission"
  172. v-else-if="isShowPermission && (platform === 'ios')" />
  173. </view>
  174. <returnCar :isShowReturnCar='isShowReturnCar' typePage="index" @closeShowReturnCarBtn="isShowReturnCar=false"
  175. @navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn" />
  176. </view>
  177. </template>
  178. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  179. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  180. <script>
  181. var config = require('@/common/config.js');
  182. var config_gyq = require('@/common/config_gyq.js');
  183. var common = require('@/common/common.js');
  184. var http = require('@/common/http.js');
  185. var request = require('@/common/request.js');
  186. var storage = require('@/common/storage.js');
  187. import Control from './components/control/control'
  188. import MapCard from './components/mapCard/mapCard'
  189. import UnleasedPages from './components/unleasedPages/unleasedPages'
  190. import CustomTabbar from '@/component/customTabbar/index';
  191. import BluetoothUnlockAuth from '../bluetoothUnlock/bluetoothUnlockAuth.vue'
  192. import AndroidUnlockAuth from './components/AndroidUnlockAuth.vue'
  193. import IosUnlockAuth from './components/IosUnlockAuth.vue'
  194. import ReturnCar from '@/component/returnCar/returnCar';
  195. import {
  196. getFunctionTag,
  197. } from '@/common/storage.js';
  198. import permision from "@/js_sdk/wa-permission/permission.js"
  199. let bluetooth = require('@/common/bluetooth.js');
  200. export default {
  201. watch: {
  202. 'car_info.sar_sn'(newValue, oldValue) {
  203. }
  204. },
  205. data() {
  206. return {
  207. orderInfo:{},
  208. time:null,
  209. isModel: false,
  210. isConnected: false,
  211. statusBarHeight: 0,
  212. newsList: {},
  213. img_list: [],
  214. isLogin: false,
  215. isOverdueShow: false,
  216. contrilList: [],
  217. isTrackOrAll: true,
  218. model_list: [],
  219. car_list: [], //用户车辆列表
  220. car_sn: '', //当前车辆编号
  221. isHideInduction: true,
  222. car_info: {
  223. exchange_package_info: {
  224. activity_time: 0
  225. }
  226. },
  227. platform: 'android', //手机型号
  228. isShowPermission: false, //是否打开权限弹窗
  229. statusBarHeight: 0,
  230. isBluethConnect: false, //当前是否蓝牙连接或者配对
  231. isOpenAllPermission: false, //所有蓝牙配对所需权限是否已开启
  232. isShowReturnCar:false,
  233. overdueData:{},
  234. car_image:[],
  235. isConnectBlueth:false
  236. };
  237. },
  238. computed: {},
  239. components: {
  240. Control,
  241. MapCard,
  242. CustomTabbar,
  243. UnleasedPages,
  244. BluetoothUnlockAuth,
  245. AndroidUnlockAuth,
  246. IosUnlockAuth,
  247. ReturnCar
  248. },
  249. /**
  250. * 生命周期函数--监听页面加载
  251. */
  252. onLoad: function(options) {
  253. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  254. let _this = this
  255. // #ifdef APP
  256. uni.getNetworkType({
  257. success: (res) => {
  258. if (res.networkType == 'none') {
  259. this.isConnected = false;
  260. } else {
  261. this.isConnected = true;
  262. }
  263. }
  264. });
  265. uni.onNetworkStatusChange((res) => {
  266. _this.isConnected = res.isConnected
  267. if (res.isConnected) {
  268. _this.init()
  269. }
  270. });
  271. // #endif
  272. // #ifndef APP
  273. this.isConnected = true
  274. _this.init()
  275. // #endif
  276. if('car_sn' in this.car_info){
  277. this.bluetoothClose()
  278. bluetooth.initBluetooth()
  279. }
  280. },
  281. /**
  282. * 生命周期函数--监听页面显示
  283. */
  284. onShow: function() {
  285. // #ifdef APP
  286. uni.getNetworkType({
  287. success: (res) => {
  288. if (res.networkType != 'none') {
  289. this.init()
  290. }
  291. }
  292. });
  293. // #endif
  294. // #ifndef APP
  295. this.init()
  296. // #endif
  297. },
  298. onHide(){
  299. this.clearIntervalTimer()
  300. },
  301. // 分享给好友
  302. onShareAppMessage: function(res) { //发送给朋友
  303. return {
  304. title: this.appConfig.app_name,
  305. path: 'pages/index/index',
  306. }
  307. },
  308. onUnload() {
  309. this.clearIntervalTimer()
  310. },
  311. methods: {
  312. clearIntervalTimer() {
  313. if (this.time == null) return
  314. clearInterval(this.time)
  315. this.time = null
  316. },
  317. init() {
  318. this.loadModelList()
  319. this.contrilList = getFunctionTag().activeTag
  320. const user_token = storage.getUserToken()
  321. this.car_info = uni.getStorageSync('car_info') || {};
  322. const app = getApp();
  323. this.isBluethConnect = app.globalData.nearLockCheck
  324. if (!user_token) return
  325. this.newsNumFn()
  326. this.isLogin = true
  327. this.loadUserCarList()
  328. //蓝牙是否连接
  329. if('car_sn' in this.car_info && Object.keys(app.globalData.connectionState).length != 0){
  330. this.isConnectBlueth=app.globalData.connectionState[this.car_info.car_sn].connect
  331. }
  332. // #ifdef APP
  333. //蓝牙配对所需权限 运行小程序需要隐藏
  334. // const permissionArr = permision.requestAndroidPermissions(this.platform)
  335. // console.log(permissionArr, 'permissionArr');
  336. // this.setData({
  337. // authStepList: permissionArr
  338. // })
  339. // permissionArr.map(item => {
  340. // if (!item.state) this.isOpenAllPermission = true
  341. // })
  342. // #endif
  343. // if (!this.car_info.car_sn) {
  344. // } else {
  345. // this.loadCarDetail(this.car_info.car_sn)
  346. // }
  347. },
  348. retry() {
  349. },
  350. async newsNumFn() {
  351. let {
  352. data
  353. } = await request.postApi(config_gyq.API_FLK_MESSAGE_UNREAD_COUNT, {})
  354. if (data.code == 200) {
  355. this.newsList = data.data
  356. }
  357. },
  358. changCar(e) {
  359. this.car_info = e
  360. },
  361. routerLink(url) {
  362. uni.navigateTo({
  363. url
  364. })
  365. },
  366. loadIsLogin() {
  367. uni.navigateTo({
  368. url: '/pages/loginRegister/login',
  369. })
  370. },
  371. toMoreInfoPage() {
  372. uni.navigateTo({
  373. url: '/pages/moreInfo/moreInfo',
  374. });
  375. },
  376. navTravelingTrack() {
  377. uni.navigateTo({
  378. url: '/pages/travelingTrack/travelingTrack?longitude=' + this.longitude + '&latitude=' + this
  379. .latitude,
  380. success: function(res) {},
  381. fail: function(res) {},
  382. complete: function(res) {}
  383. });
  384. },
  385. inductiveUnlockHandle() {
  386. // uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  387. // console.log(!this.isOpenAllPermission,this.isBluethConnect,'this.isBluethConnect');
  388. // if(this.isBluethConnect){
  389. // uni.navigateTo({ url: '/pages/bluetoothUnlock/unlockSet' })
  390. // }else{
  391. // if(!this.isOpenAllPermission){
  392. // common.simpleToast('所需权限开启成功,前往开启蓝牙配对...');
  393. // uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  394. // }else{
  395. // this.setData({
  396. // isShowPermission:true,
  397. // })
  398. // }
  399. // }
  400. },
  401. closePermission() {
  402. this.setData({
  403. isShowPermission: false
  404. })
  405. },
  406. showInduction() {
  407. this.isHideInduction = true
  408. },
  409. loadModelList() {
  410. if (this.isModel) {
  411. return
  412. }
  413. this.isModel = true
  414. const me = this
  415. http.postApi(config.API_RECOMMEND_CAR_MODEL_LIST, {}, (resp) => {
  416. if (resp.data.code === 200) {
  417. const list = resp.data.data
  418. const img_list = resp.data.data.map(item => item.image)
  419. me.setData({
  420. model_list: list,
  421. img_list: img_list
  422. })
  423. } else {
  424. common.simpleToast(resp.data.msg);
  425. }
  426. })
  427. },
  428. srcFn(url) {
  429. uni.navigateTo({
  430. url: url
  431. });
  432. },
  433. navToPage(e) {
  434. const me = this
  435. const url = e.currentTarget.dataset.url;
  436. if (!url) {
  437. return;
  438. }
  439. uni.navigateTo({
  440. url: url
  441. });
  442. },
  443. loadUserCarList() {
  444. const me = this
  445. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  446. if (resp.data.code === 200) {
  447. const list = resp.data.data.list
  448. let isCar = false
  449. let itemCar = {}
  450. for (let i = 0; i < list.length; i++) {
  451. let item = list[i];
  452. if (item.car_sn == this.car_info.car_sn) {
  453. isCar = true
  454. itemCar = item
  455. }
  456. }
  457. if (!isCar) {
  458. if (list.length > 0) {
  459. uni.removeStorageSync('car_info')
  460. me.setData({
  461. car_list: list,
  462. car_sn: list[0].car_sn || '',
  463. })
  464. me.loadCarDetail(list[0].car_sn)
  465. } else {
  466. uni.removeStorageSync('car_info')
  467. this.car_info = {}
  468. }
  469. } else {
  470. me.loadCarDetail(itemCar.car_sn)
  471. }
  472. } else {
  473. common.simpleToast(resp.data.msg);
  474. }
  475. })
  476. },
  477. loadCarDetail(car_sn) {
  478. const me = this
  479. http.postApi(config.API_FLK_CAR_DETAIL, {
  480. car_sn
  481. }, (resp) => {
  482. uni.hideLoading();
  483. if (resp.data.code === 200) {
  484. resp.data.data.car_sn = car_sn
  485. const _car_image=resp.data.data.model_images?resp.data.data.model_images.split(','):['https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX']
  486. me.setData({
  487. car_info: resp.data.data,
  488. car_image:_car_image
  489. })
  490. uni.setStorageSync('car_info', this.car_info);
  491. const app=getApp()
  492. //车辆离线连接蓝牙
  493. console.log('me.car_info.online',me.car_info.online);
  494. if(me.car_info.online==0){
  495. me.loadBluetooth()
  496. }
  497. //判断逾期
  498. if (resp.data.data.sold_time) return
  499. let time = Math.ceil(resp.data.data.hire_end_time - Math.floor(new Date()) / 1000) / 60
  500. if (time <= 0) {
  501. this.isOverdueShow = true
  502. app.globalData.isOverdueShow=true
  503. this.car_info.hire_end_time = common.getTimeToDay(time)
  504. } else {
  505. this.isOverdueShow = false
  506. app.globalData.isOverdueShow=false
  507. }
  508. console.log('this.time',this.time);
  509. } else {
  510. // common.simpleToast(resp.data.msg);
  511. }
  512. })
  513. },
  514. navSwitchCar() {
  515. const me = this
  516. //如果租/购多个车辆的话可以切换当前车辆
  517. uni.navigateTo({
  518. url: `/pages/carList/carList?list=${encodeURIComponent(JSON.stringify(me.car_list))}&car_sn=${me.car_sn}`,
  519. })
  520. },
  521. formatDistance(distanceMeters) {
  522. console.log(distanceMeters,'distanceMeters');
  523. // 判断距离是否超过1000米
  524. // let distanceMeters=Number(_distanceMeters)
  525. if (distanceMeters >= 1000) {
  526. // 如果超过1000米,则转换为千米并返回
  527. return (distanceMeters / 1000).toFixed(1);
  528. } else {
  529. // 否则直接返回米
  530. try {
  531. return distanceMeters;
  532. } catch (error) {
  533. return 0;
  534. }
  535. }
  536. },
  537. navStoreBtn() {
  538. const {
  539. latitude,
  540. longitude,
  541. address,
  542. model_name
  543. } = this.car_info
  544. uni.openLocation({
  545. latitude: latitude - 0,
  546. longitude: longitude - 0,
  547. scale: 15,
  548. name: model_name,
  549. address: address,
  550. success: function(res) {}
  551. });
  552. },
  553. tapReturnCar() {
  554. this.overdueMoneyFn(this.car_info.car_sn)
  555. this.isShowReturnCar = true
  556. console.log(this.isShowReturnCar)
  557. },
  558. //逾期费用计算
  559. async overdueMoneyFn(car_sn) {
  560. let {
  561. data
  562. } = await request.postApi(config_gyq.API_FLK_CAR_OVERDUE_MONEY, {
  563. car_sn
  564. })
  565. if (data.code == 200) {
  566. this.overdueData = data.data
  567. } else {
  568. common.simpleToast(data.msg)
  569. }
  570. },
  571. immediatelyReturnBtn() {
  572. const {
  573. car_sn,
  574. model_id
  575. } = this.car_info
  576. //提交还车图片
  577. uni.navigateTo({
  578. url: `/pages/activation/activation?isReturnCar=${true}&model_id=${model_id}&car_sn=${car_sn}&isOverdue=${this.isOverdueShow}&overdueMoney=${this.overdueData.money}&overdueTime=${this.overdueData.time}&type=index`
  579. });
  580. },
  581. bluetoothClose: function() {
  582. bluetooth.closeBluetoothAdapter();
  583. bluetooth.closeDevice(
  584. this.car_sn,
  585. () => {
  586. console.log(this.$t('关闭蓝牙连接'));
  587. // this.setData({
  588. // bt_loading: false
  589. // });
  590. },
  591. () => {}
  592. );
  593. bluetooth.offCharacteristicStateChange(this.car_info.car_sn, 'index');
  594. bluetooth.offConnectionStateChange(this.car_info.car_sn, 'index');
  595. },
  596. loadBluetooth() {
  597. const me = this;
  598. const third_device_type = this.car_info.third_device_type
  599. var device = {
  600. mac_id: this.car_info.car_sn,
  601. btid: this.car_info.car_sn,
  602. btkey: this.car_info.car_sn,
  603. bt_type: third_device_type,
  604. device_type: third_device_type,
  605. };
  606. const app=getApp()
  607. // app.globalData.connectionState={}
  608. //bluetooth.acceptDevice(device) 是否是蓝牙类型列表里面的
  609. if (bluetooth.acceptDevice(device)) {
  610. // 打开蓝牙连接
  611. bluetooth.openBluetoothAdapter((res) => {
  612. // common.loading()
  613. bluetooth.connectDevice(device, () => {
  614. //监听蓝牙设备连接状态变化事件
  615. bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
  616. console.log('蓝牙连接状态',res.connected);
  617. if (!res.connected) {
  618. // 蓝牙未连接
  619. // common.simpleToast('蓝牙连接断开',2000)
  620. me.isConnectBlueth=false
  621. } else {
  622. // common.simpleToast('蓝牙连接成功',2000)
  623. // 蓝牙已连接
  624. me.isConnectBlueth=true
  625. }
  626. });
  627. },
  628. (res) => {
  629. console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限',res,res.errCode);
  630. // var showContent = ""
  631. // if (res && ("errCode" in res)) {
  632. // if (res.errCode == 9000001) {
  633. // var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
  634. // } else {
  635. // var showContent = "连接失败,请尝试重新连接44444"+res.errCode
  636. // }
  637. // } else {
  638. // var showContent = "连接失败,请尝试重新连接55555"
  639. // }
  640. // uni.showModal({
  641. // title: this.$t('提示'),
  642. // confirmText: this.$t('重新连接'),
  643. // content: showContent,
  644. // success: function(res) {
  645. // if (res.confirm) {
  646. // setTimeout(()=>{
  647. // me.loadBluetooth();
  648. // },100)
  649. // } else {}
  650. // }
  651. // });
  652. },
  653. (res) => {
  654. // console.log('蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666');
  655. uni.hideLoading();
  656. // uni.showModal({
  657. // title: this.$t('提示'),
  658. // confirmText: this.$t('我知道了'),
  659. // content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666',
  660. // success: function(res) {
  661. // if (res.confirm) {
  662. // me.loadBluetooth();
  663. // } else {}
  664. // }
  665. // });
  666. }
  667. );
  668. }, );
  669. } else {
  670. //蓝牙连接未成功
  671. // uni.hideLoading();
  672. // uni.showModal({
  673. // confirmText: this.$t('我知道了'),
  674. // content: this.$t('当前机柜未找到符合的蓝牙类型'),
  675. // showCancel: false,
  676. // title: this.$t('提示'),
  677. // complete: (res) => {}
  678. // });
  679. }
  680. },
  681. }
  682. };
  683. </script>
  684. <style lang="scss" scoped>
  685. @import './index.css';
  686. .header_view {
  687. position: fixed;
  688. top: 0;
  689. left: 0;
  690. width: 100%;
  691. background-color: #c4cad6;
  692. z-index: 999; /* 确保在最上层 */
  693. }
  694. .fillClass {}
  695. .news {
  696. position: relative;
  697. margin-right: 20rpx;
  698. .num {
  699. position: absolute;
  700. right: -6rpx;
  701. top: -6rpx;
  702. min-width: 28rpx;
  703. height: 28rpx;
  704. font-size: 18rpx;
  705. display: flex;
  706. align-items: center;
  707. justify-content: center;
  708. color: #fff;
  709. line-height: 1;
  710. background-color: #FA2918;
  711. border-radius: 50%;
  712. z-index: 99;
  713. }
  714. }
  715. </style>