index.vue 24 KB

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