scanBtn.vue 29 KB

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