scanBtn.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. <template>
  2. <view class="container-view">
  3. <view @tap="sacnBtn" class="refund-btn"><text>扫码换电</text></view>
  4. </view>
  5. </template>
  6. <script>
  7. // var http = require('../../common/http.js');
  8. var http = require('../../common/request.js');
  9. // var config = require('../../common/config.js');
  10. var config = require('../../common/config_gyq.js');
  11. var common = require('../../common/common.js');
  12. var storage = require('../../common/storage.js')
  13. var user = require('../../common/user.js');
  14. var bluetooth = require('../../common/bluetooth.js');
  15. // var IndexImpl = require('../../pages/index/model/indexImpl.js');
  16. const DF_CAB_INFO_DONE = 10000; //机柜信息传输完成
  17. var subscribeTimer = null;
  18. var app = getApp();
  19. export default {
  20. props: {
  21. cab_info: {
  22. type: null,
  23. validator: val => typeof val === 'object' || val === null,
  24. required: true
  25. },
  26. dev_id: {
  27. type: String,
  28. required: true
  29. },
  30. is_my: {
  31. type: Boolean,
  32. required: false
  33. }
  34. },
  35. data() {
  36. return {
  37. is_battery: false,
  38. free_price: 0,
  39. battery_info: {},
  40. packInfo: {},
  41. reservation_info: [],
  42. myPackageInfo: {},
  43. countdownTimer: {},
  44. blueInfo: {}, //连接蓝牙需要数据
  45. isBluetooth: false, //缓存蓝牙连接状态
  46. cabinetInfo: {}, //机柜信息
  47. num: 0, //免费换电次数
  48. payType: 0, //支付方式
  49. scan_dev_id: '', //扫码机柜编号
  50. online_status: '', //机柜在线状态
  51. isOpenBluetooth: false,
  52. license_plate_number: '',
  53. isShowToBuy: false,
  54. isShowAppoint: false,
  55. wallet_money: 0,
  56. payResp: {},
  57. myLocation: {},
  58. orderInfo: {},
  59. carInfo: {},
  60. is_retuen_battery: false, //判断按钮点击还电还是换电操作
  61. orderStatusTimer: null, //定时查询还电状态
  62. showScanBtn: false,
  63. }
  64. }
  65. /**
  66. * 生命周期函数--监听页面加载
  67. */
  68. ,
  69. watch: {
  70. cab_info: {
  71. handler: function(newVal) {
  72. if (newVal) {
  73. console.log(newVal, "newVal")
  74. this.setData({
  75. reservation_info: JSON.stringify(newVal) == '{}' ? [] : newVal
  76. .reservation_info
  77. });
  78. // this.updateCountdown();
  79. }
  80. },
  81. immediate: true
  82. }
  83. },
  84. mounted: function(options) {
  85. this.loadMyPackageInfo()
  86. const car_list = uni.getStorageSync('user_car_list') || null
  87. const storedLocation = uni.getStorageSync('user_current_location');
  88. if (car_list) {
  89. // this.license_plate_number = car_list.plate_number
  90. this.carInfo = car_list
  91. }
  92. if (app.globalData.showScanBtn) {
  93. this.showScanBtn = true
  94. } else {
  95. this.showScanBtn = false
  96. }
  97. if (storedLocation && storedLocation.longitude && storedLocation.latitude) {
  98. // 如果本地有存储的定位信息,则直接使用
  99. this.setData({
  100. myLocation: storedLocation,
  101. // license_plate_number: car_list.plate_number
  102. });
  103. }
  104. //#ifdef MP-ALIPAY
  105. this.payType = 2
  106. //#endif
  107. //#ifdef MP-WEIXIN
  108. this.payType = 0
  109. //#endif
  110. bluetooth.initBluetooth()
  111. this.bluetoothClose()
  112. this.loadBatteryInfo()
  113. //this.loadExchangeInfo()
  114. },
  115. /**
  116. * 生命周期函数--监听页面显示
  117. */
  118. onShow: function() {
  119. },
  120. methods: {
  121. // 更新倒计时
  122. updateCountdown() {
  123. if (this.reservation_info.length > 0) {
  124. console.log(this.reservation_info[0])
  125. const remainingTime = common.calculateRemainingTime(this.reservation_info[0]
  126. .lock_expire_time);
  127. if (remainingTime >= 0) {
  128. this.setData({
  129. countdownTimer: common.formatTimeScan(remainingTime)
  130. })
  131. }
  132. if (remainingTime > 0) {
  133. subscribeTimer = setTimeout(() => this.updateCountdown(), 1000); // 每秒更新一次
  134. }
  135. }
  136. },
  137. loadMyPackageInfo() {
  138. // IndexImpl.loadMyPackageInfo(
  139. // (resp) => {
  140. // this.setData({
  141. // isShowAppoint: resp.isShowAppoint,
  142. // myPackageInfo: resp.myPackageInfo,
  143. // packInfo: resp.packInfo
  144. // })
  145. // this.$emit(
  146. // 'popPackageModel', this.packInfo
  147. // );
  148. // },
  149. // (failMsg) => {
  150. // //common.simpleToast(failMsg)
  151. // }
  152. // )
  153. },
  154. // navToGuild() {
  155. // const url = this.is_battery ? '/pages/my/leadReturnBattery/leadReturnBattery' :
  156. // '/pages/exchangeGuide/exchangeGuide'
  157. // uni.navigateTo({
  158. // url: url
  159. // });
  160. // },
  161. async sacnBtn() {
  162. let res = await uni.scanCode({
  163. onlyFromCamera: true,
  164. scanType: [],
  165. });
  166. var cabinet_dev_id = '';
  167. if(res[0]) return
  168. res = res[1]
  169. this.loadGeneralQRData(res)
  170. if ('path' in res && res.path) {
  171. if (res.path.split('%26devid%3D').length > 1) {
  172. cabinet_dev_id = res.path.split('%26devid%3D')[1].split('%26')[0];
  173. } else if (res.path.split('&devid=').length > 1) {
  174. cabinet_dev_id = res.path.split('&devid=')[1].split('&')[0];
  175. }
  176. }
  177. if (cabinet_dev_id != '') {
  178. this.scan_dev_id = cabinet_dev_id
  179. this.loadNowCabinetDetail(cabinet_dev_id)
  180. } else {
  181. //common.simpleToast("未找到相应的机柜")
  182. }
  183. },
  184. sacnBtnReturn() {
  185. const me = this
  186. uni.showModal({
  187. cancelText: '取消',
  188. confirmText: '确定',
  189. content: '您确定要归还电池吗?',
  190. showCancel: true,
  191. title: '提示',
  192. success: (result) => {
  193. if (result.confirm) {
  194. me.is_retuen_battery = true
  195. uni.scanCode({
  196. onlyFromCamera: true,
  197. scanType: [],
  198. success: function(res) {
  199. var cabinet_dev_id = '';
  200. me.loadGeneralQRData(res)
  201. if ('path' in res && res.path) {
  202. if (res.path.split('%26devid%3D').length > 1) {
  203. cabinet_dev_id = res.path.split('%26devid%3D')[1]
  204. .split('%26')[0];
  205. } else if (res.path.split('&devid=').length > 1) {
  206. cabinet_dev_id = res.path.split('&devid=')[1].split(
  207. '&')[0];
  208. }
  209. }
  210. if (cabinet_dev_id != '') {
  211. me.scan_dev_id = cabinet_dev_id
  212. me.loadNowCabinetDetail(cabinet_dev_id)
  213. } else {
  214. //common.simpleToast("未找到相应的机柜")
  215. }
  216. },
  217. fail: function(res) {},
  218. complete: function(res) {}
  219. });
  220. }
  221. },
  222. })
  223. },
  224. loadGeneralQRData(options, stash_sn) {
  225. let qrCode = getApp().globalData.qrCode;
  226. var url = ''
  227. if (qrCode.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  228. getApp().globalData.qrCode = ''
  229. url = qrCode
  230. }
  231. if (('result' in options) && options.result.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  232. url = decodeURIComponent(options.result);
  233. }
  234. if (url == '') return
  235. var obj = this.getUrlParams(url)
  236. if (('t' in obj) && ('d' in obj)) {
  237. if (obj.t == 1) {
  238. this.scan_dev_id = obj.d
  239. this.loadNowCabinetDetail(obj.d)
  240. return
  241. }
  242. }
  243. },
  244. getUrlParams(url) {
  245. // 通过 ? 分割获取后面的参数字符串
  246. let urlStr = url.split('?')[1]
  247. // 创建空对象存储参数
  248. let obj = {};
  249. // 再通过 & 将每一个参数单独分割出来
  250. let paramsArr = urlStr.split('&')
  251. for (let i = 0, len = paramsArr.length; i < len; i++) {
  252. // 再通过 = 将每一个参数分割为 key:value 的形式
  253. let arr = paramsArr[i].split('=')
  254. obj[arr[0]] = arr[1];
  255. }
  256. return obj
  257. },
  258. cancelReservation(reservation_order_sn) {
  259. const pData = {
  260. order_sn: reservation_order_sn
  261. }
  262. http.postApi(config.API_DAYHIRE_RESERVATION_CANCEL, pData, (resp) => {
  263. if (resp.data.code === 200) {
  264. common.simpleToast("取消预约成功")
  265. this.$emit(
  266. 'refreshCabinet'
  267. );
  268. // this.loadCabinetDetail()
  269. } else {
  270. common.simpleToast(resp.data.msg)
  271. }
  272. })
  273. },
  274. tapReservation() {
  275. // 预约换电
  276. if (this.packInfo.packType === 0||this.packInfo.packType === 2) {
  277. const notShow = 1
  278. this.$emit(
  279. 'popPackageModel', this.packInfo,notShow
  280. );
  281. return
  282. }
  283. if (this.myPackageInfo.effective.list.length === 0) {
  284. common.simpleToast("暂无可预约的电池")
  285. return
  286. }
  287. const pData = {
  288. dev_id: this.dev_id,
  289. battery_sn: this.myPackageInfo.effective.list[0].current_battery_sn
  290. }
  291. if (this.packInfo.packType === 0||this.packInfo.packType === 2) {
  292. const notShow = 1
  293. this.$emit(
  294. 'popPackageModel', this.packInfo,notShow
  295. );
  296. } else{
  297. http.postApi(config.API_DAYHIRE_CABINET_EXCHANGE_RESERVATION, pData, (resp) => {
  298. if (resp.data.code === 200) {
  299. common.simpleToast("预约成功")
  300. this.$emit(
  301. 'refreshCabinet'
  302. );
  303. } else if (resp.data.code === 181102) {
  304. const me = this
  305. uni.showModal({
  306. cancelText: '关闭',
  307. confirmText: '取消预约',
  308. content: '您当前已存在预约其它机柜,是否要取消之前的预约操作?',
  309. showCancel: true,
  310. title: '提示',
  311. success: (result) => {
  312. if (result.confirm) {
  313. me.cancelReservation(resp.data.data.order_sn)
  314. }
  315. },
  316. })
  317. } else {
  318. common.simpleToast(resp.data.msg)
  319. }
  320. })
  321. }
  322. },
  323. async loadNowCabinetDetail(dev_id) {
  324. console.log(dev_id)
  325. this.dev_id = dev_id
  326. // await http.postApi(config.API_FLK_CABINET_CHANGE_BATTERY,{
  327. // car_sn:'',
  328. // dev_id:'',
  329. // pay_type:'',
  330. // from:'',
  331. // battery_sn_list:'',
  332. // })
  333. // const timeNow = Date.now()
  334. // this.scan_dev_id = dev_id
  335. // //扫码机柜信息
  336. // const me = this
  337. // const pData = {
  338. // longitude: this.myLocation.longitude,
  339. // latitude: this.myLocation.latitude,
  340. // dev_id: dev_id || '',
  341. // service: "reservation",
  342. // time: timeNow
  343. // }
  344. // http.postApi(config.API_DAYHIRE_CABINRT_CABINRT_INFO, pData, (resp) => {
  345. // if (resp.data.code === 200) {
  346. // this.online_status = resp.data.data.cabinetInfo.online_status
  347. // const device = {
  348. // device_type: "LSCabinet",
  349. // bt_type: "",
  350. // mac_id: resp.data.data.cabinetInfo.bt_mac,
  351. // btid: resp.data.data.cabinetInfo.bt_mac,
  352. // dev_id: resp.data.data.cabinetInfo.dev_id,
  353. // key: me.decodeKey(resp.data.data.cabinetInfo.bt_sec),
  354. // btkey: resp.data.data.cabinetInfo.bt_mac,
  355. // bt_sec: me.decodeKey(resp.data.data.cabinetInfo.bt_sec),
  356. // bt_mac: resp.data.data.cabinetInfo.bt_mac
  357. // }
  358. // me.setData({
  359. // blueInfo: device,
  360. // cabinetInfo: resp.data.data.cabinetInfo
  361. // })
  362. // // me.updateCountdown()
  363. // me.bluetoothClose()
  364. // if (me.online_status == 1) {
  365. // if (me.is_retuen_battery) {
  366. // //机柜还电流程
  367. // me.noBluetoothBack()
  368. // } else {
  369. // if (me.packInfo.last_num == 0&&me.packInfo.num != 0) {
  370. // if (me.free_price != 0) {
  371. // me.setData({
  372. // isShowToBuy: true
  373. // })
  374. // me.walletInfo()
  375. // } else{
  376. // const pData = {
  377. // from: from,
  378. // battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  379. // dev_id: this.scan_dev_id,
  380. // pay_type: 9
  381. // }
  382. // const me = this
  383. // //#ifdef MP-ALIPAY
  384. // const from = 'ali'
  385. // //#endif
  386. // //#ifdef MP-WEIXIN
  387. // const from = 'wx'
  388. // //#endif
  389. // http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  390. // if (resp.data.code === 200) {
  391. // // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  392. // if (!resp.data.data.need_pay) {
  393. // me.orderInfo = {
  394. // order_sn: resp.data.data.order_sn,
  395. // empty_door_id: resp.data.data.empty_door_id,
  396. // full_door_id: resp.data.data.full_door_id,
  397. // cabbatterysn: resp.data.data.rtn_battery_sn || ''
  398. // };
  399. // me.navOpenCabinet(me.orderInfo)
  400. // } else {
  401. // me.setData({
  402. // isShowToBuy: false
  403. // })
  404. // me.wxPayPrice = resp.data.data.price
  405. // me.payResp = resp
  406. // me.doPayBattery({})
  407. // }
  408. // } else {
  409. // common.simpleToast(resp.data.msg)
  410. // }
  411. // })
  412. // }
  413. // } else {
  414. // me.toPayOrFreeExchange()
  415. // }
  416. // }
  417. // } else {
  418. // me.setData({
  419. // isOpenBluetooth: true
  420. // })
  421. // }
  422. // } else {
  423. // common.simpleToast(resp.data.msg)
  424. // }
  425. // })
  426. },
  427. walletInfo() {
  428. const me = this
  429. http.postApi(config.API_DAYHIRE_USER_WALLET_INFO, {}, function(resp) {
  430. if (resp.data.code === 200) {
  431. me.wallet_money = (resp.data.data.balance / 100).toFixed(2)
  432. } else {
  433. common.simpleToast(resp.data.msg)
  434. }
  435. })
  436. },
  437. toPayOrFreeExchange() {
  438. //购买单次换电次数进行换电或者有免费次数直接换电
  439. const me = this
  440. //#ifdef MP-ALIPAY
  441. const from = 'ali'
  442. //#endif
  443. //#ifdef MP-WEIXIN
  444. const from = 'wx'
  445. //#endif
  446. const pData = {
  447. from: from,
  448. battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  449. dev_id: this.scan_dev_id,
  450. pay_type: this.payType
  451. }
  452. //如果在线用机柜换电 不在线用蓝牙换电
  453. http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  454. if (resp.data.code === 200) {
  455. // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  456. if (!resp.data.data.need_pay) {
  457. me.orderInfo = {
  458. order_sn: resp.data.data.order_sn,
  459. empty_door_id: resp.data.data.empty_door_id,
  460. full_door_id: resp.data.data.full_door_id,
  461. cabbatterysn: resp.data.data.rtn_battery_sn || ''
  462. };
  463. me.navOpenCabinet(me.orderInfo)
  464. } else {
  465. me.setData({
  466. isShowToBuy: false
  467. })
  468. me.wxPayPrice = resp.data.data.price
  469. me.payResp = resp
  470. me.doPayBattery({})
  471. }
  472. } else {
  473. common.simpleToast(resp.data.msg)
  474. }
  475. })
  476. },
  477. async loadBatteryInfo() {
  478. console.log("加载电池信息")
  479. const me = this
  480. console.log(2222);
  481. let resp = await http.postApi(config.API_CAR_DEVICE_LIST, {})
  482. if (resp.data.code === 200) {
  483. console.log(resp.data)
  484. if (resp.data.data !== null) {
  485. me.setData({
  486. battery_info: resp.data.data.list,
  487. is_battery: true
  488. })
  489. // me.$emit(
  490. // 'updateBatteryInfo', resp.data.data
  491. // );
  492. } else {
  493. me.setData({
  494. // battery_info: resp.data.data,
  495. is_battery: false
  496. })
  497. }
  498. } else {
  499. common.simpleToast(resp.data.msg)
  500. }
  501. },
  502. doPayBattery: function(pData) {
  503. const me = this
  504. //#ifdef MP-WEIXIN
  505. var payParams = JSON.parse(this.payResp.data.data.payParams);
  506. var order_sn = this.payResp.data.data.order_sn;
  507. user.wxPay(order_sn, payParams, function(isSuccess) {
  508. if (isSuccess) {
  509. common.simpleToast('支付成功')
  510. //跳转换电流程页面
  511. me.orderInfo = {
  512. order_sn: me.payResp.data.data.order_sn,
  513. empty_door_id: me.payResp.data.data.empty_door_id,
  514. full_door_id: me.payResp.data.data.full_door_id,
  515. cabbatterysn: me.payResp.data.data.rtn_battery_sn || ''
  516. };
  517. me.navOpenCabinet(me.orderInfo)
  518. } else {
  519. user.cancelCabExPay(order_sn)
  520. // 取消支付
  521. }
  522. });
  523. //#endif
  524. //#ifdef MP-ALIPAY
  525. my.tradePay({
  526. tradeNO: me.payResp.data.data.trade_no,
  527. success: function(res) {
  528. if (res.resultCode == 9000) {
  529. common.simpleToast('支付成功')
  530. me.orderInfo = {
  531. order_sn: me.payResp.data.data.order_sn,
  532. empty_door_id: me.payResp.data.data.empty_door_id,
  533. full_door_id: me.payResp.data.data.full_door_id,
  534. cabbatterysn: me.payResp.data.data.rtn_battery_sn || ''
  535. };
  536. me.navOpenCabinet(me.orderInfo)
  537. } else {
  538. user.cancelCabExPay(order_sn)
  539. }
  540. },
  541. });
  542. //#endif
  543. },
  544. tapOpenBluetooth(time = null) {
  545. const me = this
  546. const device = me.blueInfo
  547. // 蓝牙换电按钮 加载蓝牙
  548. console.log(111111111);
  549. this.loadBluetooth()
  550. },
  551. loadBluetooth() {
  552. const me = this;
  553. console.log(this.blueInfo,'this.blueInfo');
  554. const device = this.blueInfo;
  555. if (bluetooth.acceptDevice(device)) {
  556. // 打开蓝牙连接
  557. bluetooth.openBluetoothAdapter((res) => {
  558. common.loading()
  559. bluetooth.connectDevice(device, () => {
  560. bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
  561. if (JSON.stringify(data) != '{}') {
  562. if (data.state === DF_CAB_INFO_DONE) {
  563. me.reportCabintInfo(me.cabinetInfo.dev_id, data
  564. .commandList);
  565. uni.hideLoading();
  566. common.simpleToast('蓝牙连接成功')
  567. me.setData({
  568. isOpenBluetooth: false,
  569. isBluetooth: true
  570. });
  571. me.bindReturnOrExchange() //还电or换电
  572. }
  573. }
  574. });
  575. bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
  576. uni.hideLoading();
  577. if (!res.connected) {
  578. // 蓝牙未连接
  579. // common.simpleToast('蓝牙连接断开',2000)
  580. me.setData({
  581. isOpenBluetooth: true,
  582. isBluetooth: false
  583. });
  584. } else {
  585. common.simpleToast('蓝牙连接成功', 2000)
  586. // 蓝牙已连接
  587. me.setData({
  588. isOpenBluetooth: false,
  589. isBluetooth: true
  590. });
  591. me.bindReturnOrExchange() //还电or换电
  592. }
  593. });
  594. bluetooth.sendGetCabinetInfoCommand(
  595. device.mac_id,
  596. device,
  597. (res) => {
  598. common.loading();
  599. },
  600. (res) => {
  601. console.log(res,"蓝牙连接1")
  602. me.setData({
  603. isOpenBluetooth: false
  604. });
  605. uni.showModal({
  606. title: '提示',
  607. confirmText: '重新连接',
  608. content: '连接失败,请尝试重新连接',
  609. success: function(res) {
  610. if (res.confirm) {
  611. me.loadBluetooth();
  612. } else {
  613. // uni.navigateBack({
  614. // delta: 1
  615. // });
  616. }
  617. }
  618. });
  619. }
  620. );
  621. },
  622. (res) => {
  623. uni.hideLoading();
  624. var showContent = ""
  625. var text;
  626. //#ifdef MP-ALIPAY
  627. text = '支付宝'
  628. //#endif
  629. //#ifdef MP-WEIXIN
  630. text = '微信'
  631. //#endif
  632. if (res && ("errCode" in res)) {
  633. if (res.errCode == 9000001) {
  634. var showContent= "观察周围是否有其他骑手连接,请等待对方完成 或 "+ text +"是否开启了蓝牙权限!!"
  635. } else {
  636. console.log(res,"蓝牙连接2")
  637. var showContent = "连接失败,请尝试重新连接"
  638. }
  639. } else {
  640. console.log(res,"蓝牙连接3")
  641. var showContent = "连接失败,请尝试重新连接"
  642. }
  643. me.setData({
  644. isOpenBluetooth: false,
  645. isBluetooth: false
  646. });
  647. uni.showModal({
  648. title: '提示',
  649. confirmText: '重新连接',
  650. content: showContent,
  651. success: function(res) {
  652. if (res.confirm) {
  653. me.loadBluetooth();
  654. } else {
  655. // uni.navigateBack({
  656. // delta: 1
  657. // });
  658. }
  659. }
  660. });
  661. }, (res) => {
  662. uni.hideLoading();
  663. me.setData({
  664. isOpenBluetooth: false
  665. });
  666. uni.showModal({
  667. title: '提示',
  668. confirmText: '我知道了',
  669. content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙',
  670. success: function(res) {
  671. if (res.confirm) {
  672. me.loadBluetooth();
  673. } else {
  674. // uni.navigateBack({
  675. // delta: 1
  676. // });
  677. }
  678. }
  679. });
  680. }
  681. );
  682. }, );
  683. } else {
  684. //蓝牙连接未成功
  685. uni.hideLoading();
  686. uni.showModal({
  687. confirmText: '我知道了',
  688. content: '当前机柜未找到符合的蓝牙类型',
  689. showCancel: false,
  690. title: '提示',
  691. complete: (res) => {
  692. // uni.navigateBack({
  693. // delta: 1
  694. // });
  695. }
  696. });
  697. }
  698. },
  699. reportCabintInfo(dev_id, list) {
  700. var pushList = []
  701. for (var i = 0; list.length > i; i++) {
  702. var sublist = []
  703. for (var j = 0; list[i].length > j; j++) {
  704. sublist.push(parseInt(list[i][j]))
  705. }
  706. pushList.push(sublist)
  707. }
  708. const pData = {
  709. dev_id: dev_id,
  710. data: JSON.stringify(pushList)
  711. }
  712. const me = this
  713. http.postApi(config.API_CABINET_BLUETOOTH_INFO, pData, function(response) {
  714. if (response.data.code === 200) {
  715. // me.setData({
  716. // cabinetInfo: response.data.data.cabinetInfo
  717. // })
  718. } else {
  719. simpleToast(response.data.msg)
  720. }
  721. })
  722. },
  723. navOpenCabinet(pdata, battery_type) {
  724. const me = this
  725. const paramsString = JSON.stringify(pdata)
  726. const cabinetInfoString = JSON.stringify(me.cabinetInfo)
  727. // 跳转机柜换电页面-展示换电流程和结果
  728. uni.navigateTo({
  729. url: '/pages/openCabinetBind/openCabinetBindSn?pdata=' + encodeURIComponent(paramsString) +
  730. '&cabinet_info=' + encodeURIComponent(cabinetInfoString) + '&battery_type=' + battery_type,
  731. success: function(res) {},
  732. fail: function(res) {},
  733. complete: function(res) {},
  734. })
  735. },
  736. // loadExchangeInfo() {
  737. // // 查询免费换电次数/换电价格
  738. // const pData = {
  739. // license_plate_number: this.license_plate_number
  740. // }
  741. // http.postApi(config.API_DAYHIRE_CABINRT_BATTERY_EXCHANGE_INFO, pData, (resp) => {
  742. // if (resp.data.code === 200) {
  743. // this.setData({
  744. // num: resp.data.data.last_free_number,
  745. // free_price: (resp.data.data.price / 100).toFixed(2),
  746. // })
  747. // } else {
  748. // common.simpleToast(resp.data.msg)
  749. // }
  750. // })
  751. // },
  752. bluetoothClose: function() {
  753. bluetooth.closeBluetoothAdapter();
  754. bluetooth.closeDevice(
  755. this.cabinetInfo.bt_mac,
  756. () => {
  757. // this.setData({
  758. // bt_loading: false
  759. // });
  760. },
  761. () => {}
  762. );
  763. bluetooth.offCharacteristicStateChange(this.cabinetInfo.bt_mac, 'home');
  764. bluetooth.offConnectionStateChange(this.cabinetInfo.bt_mac, 'home');
  765. },
  766. changePayType(e) {
  767. const type = e.currentTarget.dataset.type
  768. if (this.wallet_money < this.free_price) {
  769. common.simpleToast('钱包余额不足')
  770. return
  771. }
  772. this.setData({
  773. payType: type
  774. })
  775. console.log(this.free_price, 'free_price');
  776. },
  777. close() {
  778. this.setData({
  779. isOpenBluetooth: false
  780. })
  781. },
  782. claseShowToBuy() {
  783. this.setData({
  784. isShowToBuy: false
  785. })
  786. },
  787. decodeKey(str) {
  788. var val = []
  789. for (var i = 0; i < str.length / 2; i++) {
  790. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16))
  791. }
  792. var str = ""
  793. for (var i = 0; val.length > i; i++) {
  794. str += String.fromCharCode(~val[i] & 0xff)
  795. }
  796. return str
  797. },
  798. noBluetoothBack() {
  799. common.loading();
  800. const me = this
  801. const pData = {
  802. battery_sn: this.battery_info.battery_sn,
  803. dev_id: this.scan_dev_id
  804. }
  805. http.postApi(config.API_CABINET_RETURN_HIRE_BATTERYI, pData, resp => {
  806. uni.hideLoading()
  807. if (resp.data.code === 200) {
  808. const pData = {
  809. order_sn: resp.data.data.order_sn,
  810. battery_sn: me.battery_info.battery_sn,
  811. }
  812. me.navOpenCabinet(pData, 1)
  813. } else {
  814. common.alert('提示', resp.data.msg);
  815. }
  816. })
  817. },
  818. bindReturnOrExchange() {
  819. const me = this
  820. console.log(me.is_retuen_batterym, 'is_retuen_battery');
  821. if (me.is_retuen_battery) {
  822. common.loading();
  823. const me = this
  824. const pdata = {
  825. battery_sn: this.battery_info.battery_sn,
  826. dev_id: this.scan_dev_id
  827. }
  828. console.log(pdata, 'pdatapdata');
  829. http.postApi(config.API_CABINET_BLUETOOTH_RETURN, pdata, resp => {
  830. wx.hideLoading()
  831. console.log(resp.data, 'resp.data');
  832. if (resp.data.code === 200) {
  833. console.log(resp.data.data, '1314');
  834. const pData = {
  835. order_sn: resp.data.data.order_sn,
  836. empty_door_id: resp.data.data.empty_door_id,
  837. rtn_battery_ca: resp.data.data.rtn_battery_ca || ''
  838. }
  839. //还电
  840. me.navOpenCabinet(pData, 1)
  841. } else {
  842. common.alert('提示', resp.data.msg);
  843. }
  844. })
  845. } else {
  846. //换电
  847. if (me.packInfo.last_num == 0&&me.packInfo.num != 0) {
  848. if (me.free_price != 0) {
  849. me.setData({
  850. isShowToBuy: true
  851. })
  852. me.walletInfo()
  853. } else{
  854. const pData = {
  855. from: from,
  856. battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  857. dev_id: this.scan_dev_id,
  858. pay_type: 9
  859. }
  860. const me = this
  861. //#ifdef MP-ALIPAY
  862. const from = 'ali'
  863. //#endif
  864. //#ifdef MP-WEIXIN
  865. const from = 'wx'
  866. //#endif
  867. http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  868. if (resp.data.code === 200) {
  869. // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  870. if (!resp.data.data.need_pay) {
  871. me.orderInfo = {
  872. order_sn: resp.data.data.order_sn,
  873. empty_door_id: resp.data.data.empty_door_id,
  874. full_door_id: resp.data.data.full_door_id,
  875. cabbatterysn: resp.data.data.rtn_battery_sn || ''
  876. };
  877. me.navOpenCabinet(me.orderInfo)
  878. } else {
  879. me.setData({
  880. isShowToBuy: false
  881. })
  882. me.wxPayPrice = resp.data.data.price
  883. me.payResp = resp
  884. me.doPayBattery({})
  885. }
  886. } else {
  887. common.simpleToast(resp.data.msg)
  888. }
  889. })
  890. }
  891. } else {
  892. me.toPayOrFreeExchange()
  893. }
  894. }
  895. },
  896. }
  897. };
  898. </script>
  899. <style>
  900. @import './scanBtn.css';
  901. </style>