scanBtn.vue 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030
  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.navigateTo({
  142. url: '/pages/batteryPackage/batteryPackage'
  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. for (let index = 0; index < userBattery.length; index++) {
  203. let item = userBattery[index];
  204. for (var i = 0; i < boxBattery.length; i++) {
  205. var items = boxBattery[i];
  206. if(item.child_tag_code == items.child_tag_code && item.child_tag_code){
  207. tagCode.push(item.child_tag_code)
  208. }else if(item.main_tag_code == items.main_tag_code && item.main_tag_code){
  209. tagCode.push(item.main_tag_code)
  210. }
  211. }
  212. }
  213. return tagCode
  214. },
  215. loadIsLogin() {
  216. uni.navigateTo({
  217. url: '/pages/loginRegister/login',
  218. })
  219. },
  220. async sacnBtn() {
  221. const user_token = storage.getUserToken()
  222. if (!user_token) {
  223. this.loadIsLogin()
  224. return
  225. }
  226. await this.loadBatteryInfo()
  227. if(this.isTagCodeFn().length < 1){
  228. common.simpleToast('未找到可更换的电池!')
  229. return
  230. }
  231. if((this.listData.user_battery_list.length - this.listData.can_exchange_num) >= 0 && this.listData.can_exchange_num != -1){
  232. // if(showModal[1].confirm){
  233. // uni.navigateTo({
  234. // url:`/pages/batteryPackage/batteryPackage`
  235. // })
  236. // return
  237. // }
  238. this.packType = 0
  239. this.isModelCenter = true
  240. return
  241. }
  242. uni.showLoading({
  243. title:' 加载中...'
  244. })
  245. let res = await uni.scanCode({
  246. onlyFromCamera: true,
  247. scanType: ['qrCode'],
  248. });
  249. uni.hideLoading()
  250. var cabinet_dev_id = '';
  251. if(res[0]) return
  252. res = res[1]
  253. this.loadGeneralQRData(res)
  254. // if ('path' in res && res.path) {
  255. // if (res.path.split('%26devid%3D').length > 1) {
  256. // cabinet_dev_id = res.path.split('%26devid%3D')[1].split('%26')[0];
  257. // } else if (res.path.split('&devid=').length > 1) {
  258. // cabinet_dev_id = res.path.split('&devid=')[1].split('&')[0];
  259. // }
  260. // }
  261. // if (cabinet_dev_id != '') {
  262. // this.scan_dev_id = cabinet_dev_id
  263. // this.loadNowCabinetDetail(cabinet_dev_id)
  264. // } else {
  265. // common.simpleToast("未找到相应的机柜")
  266. // }
  267. },
  268. sacnBtnReturn() {
  269. const me = this
  270. uni.showModal({
  271. cancelText: '取消',
  272. confirmText: '确定',
  273. content: '您确定要归还电池吗?',
  274. showCancel: true,
  275. title: '提示',
  276. success: (result) => {
  277. if (result.confirm) {
  278. me.is_retuen_battery = true
  279. uni.scanCode({
  280. onlyFromCamera: true,
  281. scanType: [],
  282. success: function(res) {
  283. var cabinet_dev_id = '';
  284. me.loadGeneralQRData(res)
  285. if ('path' in res && res.path) {
  286. if (res.path.split('%26devid%3D').length > 1) {
  287. cabinet_dev_id = res.path.split('%26devid%3D')[1]
  288. .split('%26')[0];
  289. } else if (res.path.split('&devid=').length > 1) {
  290. cabinet_dev_id = res.path.split('&devid=')[1].split(
  291. '&')[0];
  292. }
  293. }
  294. if (cabinet_dev_id != '') {
  295. me.scan_dev_id = cabinet_dev_id
  296. me.loadNowCabinetDetail(cabinet_dev_id)
  297. } else {
  298. //common.simpleToast("未找到相应的机柜")
  299. }
  300. },
  301. fail: function(res) {},
  302. complete: function(res) {}
  303. });
  304. }
  305. },
  306. })
  307. },
  308. loadGeneralQRData(options, stash_sn) {
  309. let qrCode = getApp().globalData.qrCode;
  310. var url = ''
  311. if (qrCode.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  312. getApp().globalData.qrCode = ''
  313. url = qrCode
  314. }
  315. if (('result' in options) && options.result.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  316. url = decodeURIComponent(options.result);
  317. }
  318. if (url == '') return
  319. var obj = this.getUrlParams(url)
  320. if (('t' in obj) && ('d' in obj)) {
  321. if (obj.t == 1) {
  322. this.scan_dev_id = obj.d
  323. this.loadNowCabinetDetail(obj.d)
  324. return
  325. }
  326. }
  327. },
  328. getUrlParams(url) {
  329. // 通过 ? 分割获取后面的参数字符串
  330. let urlStr = url.split('?')[1]
  331. // 创建空对象存储参数
  332. let obj = {};
  333. // 再通过 & 将每一个参数单独分割出来
  334. let paramsArr = urlStr.split('&')
  335. for (let i = 0, len = paramsArr.length; i < len; i++) {
  336. // 再通过 = 将每一个参数分割为 key:value 的形式
  337. let arr = paramsArr[i].split('=')
  338. obj[arr[0]] = arr[1];
  339. }
  340. return obj
  341. },
  342. cancelReservation(reservation_order_sn) {
  343. const pData = {
  344. order_sn: reservation_order_sn
  345. }
  346. http.postApi(config.API_DAYHIRE_RESERVATION_CANCEL, pData, (resp) => {
  347. if (resp.data.code === 200) {
  348. common.simpleToast("取消预约成功")
  349. this.$emit(
  350. 'refreshCabinet'
  351. );
  352. // this.loadCabinetDetail()
  353. } else {
  354. common.simpleToast(resp.data.msg)
  355. }
  356. })
  357. },
  358. tapReservation() {
  359. // 预约换电
  360. if (this.packInfo.packType === 0||this.packInfo.packType === 2) {
  361. const notShow = 1
  362. this.$emit(
  363. 'popPackageModel', this.packInfo,notShow
  364. );
  365. return
  366. }
  367. if (this.myPackageInfo.effective.list.length === 0) {
  368. common.simpleToast("暂无可预约的电池")
  369. return
  370. }
  371. const pData = {
  372. dev_id: this.dev_id,
  373. battery_sn: this.myPackageInfo.effective.list[0].current_battery_sn
  374. }
  375. if (this.packInfo.packType === 0||this.packInfo.packType === 2) {
  376. const notShow = 1
  377. this.$emit(
  378. 'popPackageModel', this.packInfo,notShow
  379. );
  380. } else{
  381. http.postApi(config.API_DAYHIRE_CABINET_EXCHANGE_RESERVATION, pData, (resp) => {
  382. if (resp.data.code === 200) {
  383. common.simpleToast("预约成功")
  384. this.$emit(
  385. 'refreshCabinet'
  386. );
  387. } else if (resp.data.code === 181102) {
  388. const me = this
  389. uni.showModal({
  390. cancelText: '关闭',
  391. confirmText: '取消预约',
  392. content: '您当前已存在预约其它机柜,是否要取消之前的预约操作?',
  393. showCancel: true,
  394. title: '提示',
  395. success: (result) => {
  396. if (result.confirm) {
  397. me.cancelReservation(resp.data.data.order_sn)
  398. }
  399. },
  400. })
  401. } else {
  402. common.simpleToast(resp.data.msg)
  403. }
  404. })
  405. }
  406. },
  407. async loadNowCabinetDetail(dev_id) {
  408. this.dev_id = dev_id
  409. let battery_sn_list = this.listData.user_battery_list.map(item=>{
  410. return item.battery.battery_sn
  411. })
  412. let {data} = await http.postApi(config.API_FLK_CABINET_CHANGE_BATTERY,{
  413. car_sn:this.car_info.car_sn,
  414. dev_id,
  415. pay_type:0,
  416. battery_sn_list,
  417. })
  418. if(data.code == 200){
  419. uni.navigateTo({
  420. url:`/pages/openCabinet/openCabinet?order_sn=${data.data.order_sn}`
  421. })
  422. }else{
  423. common.simpleToast(data.msg)
  424. }
  425. console.log(data)
  426. // await http.postApi(config.API_FLK_CABINET_CHANGE_BATTERY,{
  427. // car_sn:'',
  428. // dev_id:'',
  429. // pay_type:'',
  430. // from:'',
  431. // battery_sn_list:'',
  432. // })
  433. // const timeNow = Date.now()
  434. // this.scan_dev_id = dev_id
  435. // //扫码机柜信息
  436. // const me = this
  437. // const pData = {
  438. // longitude: this.myLocation.longitude,
  439. // latitude: this.myLocation.latitude,
  440. // dev_id: dev_id || '',
  441. // service: "reservation",
  442. // time: timeNow
  443. // }
  444. // http.postApi(config.API_DAYHIRE_CABINRT_CABINRT_INFO, pData, (resp) => {
  445. // if (resp.data.code === 200) {
  446. // this.online_status = resp.data.data.cabinetInfo.online_status
  447. // const device = {
  448. // device_type: "LSCabinet",
  449. // bt_type: "",
  450. // mac_id: resp.data.data.cabinetInfo.bt_mac,
  451. // btid: resp.data.data.cabinetInfo.bt_mac,
  452. // dev_id: resp.data.data.cabinetInfo.dev_id,
  453. // key: me.decodeKey(resp.data.data.cabinetInfo.bt_sec),
  454. // btkey: resp.data.data.cabinetInfo.bt_mac,
  455. // bt_sec: me.decodeKey(resp.data.data.cabinetInfo.bt_sec),
  456. // bt_mac: resp.data.data.cabinetInfo.bt_mac
  457. // }
  458. // me.setData({
  459. // blueInfo: device,
  460. // cabinetInfo: resp.data.data.cabinetInfo
  461. // })
  462. // // me.updateCountdown()
  463. // me.bluetoothClose()
  464. // if (me.online_status == 1) {
  465. // if (me.is_retuen_battery) {
  466. // //机柜还电流程
  467. // me.noBluetoothBack()
  468. // } else {
  469. // if (me.packInfo.last_num == 0&&me.packInfo.num != 0) {
  470. // if (me.free_price != 0) {
  471. // me.setData({
  472. // isShowToBuy: true
  473. // })
  474. // me.walletInfo()
  475. // } else{
  476. // const pData = {
  477. // from: from,
  478. // battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  479. // dev_id: this.scan_dev_id,
  480. // pay_type: 9
  481. // }
  482. // const me = this
  483. // //#ifdef MP-ALIPAY
  484. // const from = 'ali'
  485. // //#endif
  486. // //#ifdef MP-WEIXIN
  487. // const from = 'wx'
  488. // //#endif
  489. // http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  490. // if (resp.data.code === 200) {
  491. // // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  492. // if (!resp.data.data.need_pay) {
  493. // me.orderInfo = {
  494. // order_sn: resp.data.data.order_sn,
  495. // empty_door_id: resp.data.data.empty_door_id,
  496. // full_door_id: resp.data.data.full_door_id,
  497. // cabbatterysn: resp.data.data.rtn_battery_sn || ''
  498. // };
  499. // me.navOpenCabinet(me.orderInfo)
  500. // } else {
  501. // me.setData({
  502. // isShowToBuy: false
  503. // })
  504. // me.wxPayPrice = resp.data.data.price
  505. // me.payResp = resp
  506. // me.doPayBattery({})
  507. // }
  508. // } else {
  509. // common.simpleToast(resp.data.msg)
  510. // }
  511. // })
  512. // }
  513. // } else {
  514. // me.toPayOrFreeExchange()
  515. // }
  516. // }
  517. // } else {
  518. // me.setData({
  519. // isOpenBluetooth: true
  520. // })
  521. // }
  522. // } else {
  523. // common.simpleToast(resp.data.msg)
  524. // }
  525. // })
  526. },
  527. walletInfo() {
  528. const me = this
  529. http.postApi(config.API_DAYHIRE_USER_WALLET_INFO, {}, function(resp) {
  530. if (resp.data.code === 200) {
  531. me.wallet_money = (resp.data.data.balance / 100).toFixed(2)
  532. } else {
  533. common.simpleToast(resp.data.msg)
  534. }
  535. })
  536. },
  537. toPayOrFreeExchange() {
  538. //购买单次换电次数进行换电或者有免费次数直接换电
  539. const me = this
  540. //#ifdef MP-ALIPAY
  541. const from = 'ali'
  542. //#endif
  543. //#ifdef MP-WEIXIN
  544. const from = 'wx'
  545. //#endif
  546. const pData = {
  547. from: from,
  548. battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  549. dev_id: this.scan_dev_id,
  550. pay_type: this.payType
  551. }
  552. //如果在线用机柜换电 不在线用蓝牙换电
  553. http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  554. if (resp.data.code === 200) {
  555. // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  556. if (!resp.data.data.need_pay) {
  557. me.orderInfo = {
  558. order_sn: resp.data.data.order_sn,
  559. empty_door_id: resp.data.data.empty_door_id,
  560. full_door_id: resp.data.data.full_door_id,
  561. cabbatterysn: resp.data.data.rtn_battery_sn || ''
  562. };
  563. me.navOpenCabinet(me.orderInfo)
  564. } else {
  565. me.setData({
  566. isShowToBuy: false
  567. })
  568. me.wxPayPrice = resp.data.data.price
  569. me.payResp = resp
  570. me.doPayBattery({})
  571. }
  572. } else {
  573. common.simpleToast(resp.data.msg)
  574. }
  575. })
  576. },
  577. async loadBatteryInfo() {
  578. const me = this
  579. let resp = await http.postApi(config.API_CAR_DEVICE_LIST, {})
  580. if (resp.data.code === 200) {
  581. console.log(resp.data)
  582. if (resp.data.data !== null) {
  583. me.setData({
  584. battery_info: resp.data.data.list,
  585. is_battery: true
  586. })
  587. // me.$emit(
  588. // 'updateBatteryInfo', resp.data.data
  589. // );
  590. } else {
  591. me.setData({
  592. // battery_info: resp.data.data,
  593. is_battery: false
  594. })
  595. }
  596. } else {
  597. common.simpleToast(resp.data.msg)
  598. }
  599. },
  600. doPayBattery: function(pData) {
  601. const me = this
  602. //#ifdef MP-WEIXIN
  603. var payParams = JSON.parse(this.payResp.data.data.payParams);
  604. var order_sn = this.payResp.data.data.order_sn;
  605. user.wxPay(order_sn, payParams, function(isSuccess) {
  606. if (isSuccess) {
  607. common.simpleToast('支付成功')
  608. //跳转换电流程页面
  609. me.orderInfo = {
  610. order_sn: me.payResp.data.data.order_sn,
  611. empty_door_id: me.payResp.data.data.empty_door_id,
  612. full_door_id: me.payResp.data.data.full_door_id,
  613. cabbatterysn: me.payResp.data.data.rtn_battery_sn || ''
  614. };
  615. me.navOpenCabinet(me.orderInfo)
  616. } else {
  617. user.cancelCabExPay(order_sn)
  618. // 取消支付
  619. }
  620. });
  621. //#endif
  622. //#ifdef MP-ALIPAY
  623. my.tradePay({
  624. tradeNO: me.payResp.data.data.trade_no,
  625. success: function(res) {
  626. if (res.resultCode == 9000) {
  627. common.simpleToast('支付成功')
  628. me.orderInfo = {
  629. order_sn: me.payResp.data.data.order_sn,
  630. empty_door_id: me.payResp.data.data.empty_door_id,
  631. full_door_id: me.payResp.data.data.full_door_id,
  632. cabbatterysn: me.payResp.data.data.rtn_battery_sn || ''
  633. };
  634. me.navOpenCabinet(me.orderInfo)
  635. } else {
  636. user.cancelCabExPay(order_sn)
  637. }
  638. },
  639. });
  640. //#endif
  641. },
  642. tapOpenBluetooth(time = null) {
  643. const me = this
  644. const device = me.blueInfo
  645. // 蓝牙换电按钮 加载蓝牙
  646. console.log(111111111);
  647. this.loadBluetooth()
  648. },
  649. loadBluetooth() {
  650. const me = this;
  651. console.log(this.blueInfo,'this.blueInfo');
  652. const device = this.blueInfo;
  653. if (bluetooth.acceptDevice(device)) {
  654. // 打开蓝牙连接
  655. bluetooth.openBluetoothAdapter((res) => {
  656. common.loading()
  657. bluetooth.connectDevice(device, () => {
  658. bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
  659. if (JSON.stringify(data) != '{}') {
  660. if (data.state === DF_CAB_INFO_DONE) {
  661. me.reportCabintInfo(me.cabinetInfo.dev_id, data
  662. .commandList);
  663. uni.hideLoading();
  664. common.simpleToast('蓝牙连接成功')
  665. me.setData({
  666. isOpenBluetooth: false,
  667. isBluetooth: true
  668. });
  669. me.bindReturnOrExchange() //还电or换电
  670. }
  671. }
  672. });
  673. bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
  674. uni.hideLoading();
  675. if (!res.connected) {
  676. // 蓝牙未连接
  677. // common.simpleToast('蓝牙连接断开',2000)
  678. me.setData({
  679. isOpenBluetooth: true,
  680. isBluetooth: false
  681. });
  682. } else {
  683. common.simpleToast('蓝牙连接成功', 2000)
  684. // 蓝牙已连接
  685. me.setData({
  686. isOpenBluetooth: false,
  687. isBluetooth: true
  688. });
  689. me.bindReturnOrExchange() //还电or换电
  690. }
  691. });
  692. bluetooth.sendGetCabinetInfoCommand(
  693. device.mac_id,
  694. device,
  695. (res) => {
  696. common.loading();
  697. },
  698. (res) => {
  699. console.log(res,"蓝牙连接1")
  700. me.setData({
  701. isOpenBluetooth: false
  702. });
  703. uni.showModal({
  704. title: '提示',
  705. confirmText: '重新连接',
  706. content: '连接失败,请尝试重新连接',
  707. success: function(res) {
  708. if (res.confirm) {
  709. me.loadBluetooth();
  710. } else {
  711. // uni.navigateBack({
  712. // delta: 1
  713. // });
  714. }
  715. }
  716. });
  717. }
  718. );
  719. },
  720. (res) => {
  721. uni.hideLoading();
  722. var showContent = ""
  723. var text;
  724. //#ifdef MP-ALIPAY
  725. text = '支付宝'
  726. //#endif
  727. //#ifdef MP-WEIXIN
  728. text = '微信'
  729. //#endif
  730. if (res && ("errCode" in res)) {
  731. if (res.errCode == 9000001) {
  732. var showContent= "观察周围是否有其他骑手连接,请等待对方完成 或 "+ text +"是否开启了蓝牙权限!!"
  733. } else {
  734. console.log(res,"蓝牙连接2")
  735. var showContent = "连接失败,请尝试重新连接"
  736. }
  737. } else {
  738. console.log(res,"蓝牙连接3")
  739. var showContent = "连接失败,请尝试重新连接"
  740. }
  741. me.setData({
  742. isOpenBluetooth: false,
  743. isBluetooth: false
  744. });
  745. uni.showModal({
  746. title: '提示',
  747. confirmText: '重新连接',
  748. content: showContent,
  749. success: function(res) {
  750. if (res.confirm) {
  751. me.loadBluetooth();
  752. } else {
  753. // uni.navigateBack({
  754. // delta: 1
  755. // });
  756. }
  757. }
  758. });
  759. }, (res) => {
  760. uni.hideLoading();
  761. me.setData({
  762. isOpenBluetooth: false
  763. });
  764. uni.showModal({
  765. title: '提示',
  766. confirmText: '我知道了',
  767. content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙',
  768. success: function(res) {
  769. if (res.confirm) {
  770. me.loadBluetooth();
  771. } else {
  772. // uni.navigateBack({
  773. // delta: 1
  774. // });
  775. }
  776. }
  777. });
  778. }
  779. );
  780. }, );
  781. } else {
  782. //蓝牙连接未成功
  783. uni.hideLoading();
  784. uni.showModal({
  785. confirmText: '我知道了',
  786. content: '当前机柜未找到符合的蓝牙类型',
  787. showCancel: false,
  788. title: '提示',
  789. complete: (res) => {
  790. // uni.navigateBack({
  791. // delta: 1
  792. // });
  793. }
  794. });
  795. }
  796. },
  797. reportCabintInfo(dev_id, list) {
  798. var pushList = []
  799. for (var i = 0; list.length > i; i++) {
  800. var sublist = []
  801. for (var j = 0; list[i].length > j; j++) {
  802. sublist.push(parseInt(list[i][j]))
  803. }
  804. pushList.push(sublist)
  805. }
  806. const pData = {
  807. dev_id: dev_id,
  808. data: JSON.stringify(pushList)
  809. }
  810. const me = this
  811. http.postApi(config.API_CABINET_BLUETOOTH_INFO, pData, function(response) {
  812. if (response.data.code === 200) {
  813. // me.setData({
  814. // cabinetInfo: response.data.data.cabinetInfo
  815. // })
  816. } else {
  817. simpleToast(response.data.msg)
  818. }
  819. })
  820. },
  821. navOpenCabinet(pdata, battery_type) {
  822. const me = this
  823. const paramsString = JSON.stringify(pdata)
  824. const cabinetInfoString = JSON.stringify(me.cabinetInfo)
  825. // 跳转机柜换电页面-展示换电流程和结果
  826. uni.navigateTo({
  827. url: '/pages/openCabinetBind/openCabinetBindSn?pdata=' + encodeURIComponent(paramsString) +
  828. '&cabinet_info=' + encodeURIComponent(cabinetInfoString) + '&battery_type=' + battery_type,
  829. success: function(res) {},
  830. fail: function(res) {},
  831. complete: function(res) {},
  832. })
  833. },
  834. // loadExchangeInfo() {
  835. // // 查询免费换电次数/换电价格
  836. // const pData = {
  837. // license_plate_number: this.license_plate_number
  838. // }
  839. // http.postApi(config.API_DAYHIRE_CABINRT_BATTERY_EXCHANGE_INFO, pData, (resp) => {
  840. // if (resp.data.code === 200) {
  841. // this.setData({
  842. // num: resp.data.data.last_free_number,
  843. // free_price: (resp.data.data.price / 100).toFixed(2),
  844. // })
  845. // } else {
  846. // common.simpleToast(resp.data.msg)
  847. // }
  848. // })
  849. // },
  850. bluetoothClose: function() {
  851. bluetooth.closeBluetoothAdapter();
  852. bluetooth.closeDevice(
  853. this.cabinetInfo.bt_mac,
  854. () => {
  855. // this.setData({
  856. // bt_loading: false
  857. // });
  858. },
  859. () => {}
  860. );
  861. bluetooth.offCharacteristicStateChange(this.cabinetInfo.bt_mac, 'home');
  862. bluetooth.offConnectionStateChange(this.cabinetInfo.bt_mac, 'home');
  863. },
  864. changePayType(e) {
  865. const type = e.currentTarget.dataset.type
  866. if (this.wallet_money < this.free_price) {
  867. common.simpleToast('钱包余额不足')
  868. return
  869. }
  870. this.setData({
  871. payType: type
  872. })
  873. console.log(this.free_price, 'free_price');
  874. },
  875. close() {
  876. this.setData({
  877. isOpenBluetooth: false
  878. })
  879. },
  880. claseShowToBuy() {
  881. this.setData({
  882. isShowToBuy: false
  883. })
  884. },
  885. decodeKey(str) {
  886. var val = []
  887. for (var i = 0; i < str.length / 2; i++) {
  888. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16))
  889. }
  890. var str = ""
  891. for (var i = 0; val.length > i; i++) {
  892. str += String.fromCharCode(~val[i] & 0xff)
  893. }
  894. return str
  895. },
  896. noBluetoothBack() {
  897. common.loading();
  898. const me = this
  899. const pData = {
  900. battery_sn: this.battery_info.battery_sn,
  901. dev_id: this.scan_dev_id
  902. }
  903. http.postApi(config.API_CABINET_RETURN_HIRE_BATTERYI, pData, resp => {
  904. uni.hideLoading()
  905. if (resp.data.code === 200) {
  906. const pData = {
  907. order_sn: resp.data.data.order_sn,
  908. battery_sn: me.battery_info.battery_sn,
  909. }
  910. me.navOpenCabinet(pData, 1)
  911. } else {
  912. common.alert('提示', resp.data.msg);
  913. }
  914. })
  915. },
  916. bindReturnOrExchange() {
  917. const me = this
  918. console.log(me.is_retuen_batterym, 'is_retuen_battery');
  919. if (me.is_retuen_battery) {
  920. common.loading();
  921. const me = this
  922. const pdata = {
  923. battery_sn: this.battery_info.battery_sn,
  924. dev_id: this.scan_dev_id
  925. }
  926. console.log(pdata, 'pdatapdata');
  927. http.postApi(config.API_CABINET_BLUETOOTH_RETURN, pdata, resp => {
  928. wx.hideLoading()
  929. console.log(resp.data, 'resp.data');
  930. if (resp.data.code === 200) {
  931. console.log(resp.data.data, '1314');
  932. const pData = {
  933. order_sn: resp.data.data.order_sn,
  934. empty_door_id: resp.data.data.empty_door_id,
  935. rtn_battery_ca: resp.data.data.rtn_battery_ca || ''
  936. }
  937. //还电
  938. me.navOpenCabinet(pData, 1)
  939. } else {
  940. common.alert('提示', resp.data.msg);
  941. }
  942. })
  943. } else {
  944. //换电
  945. if (me.packInfo.last_num == 0&&me.packInfo.num != 0) {
  946. if (me.free_price != 0) {
  947. me.setData({
  948. isShowToBuy: true
  949. })
  950. me.walletInfo()
  951. } else{
  952. const pData = {
  953. from: from,
  954. battery_sn: this.is_battery ? this.battery_info.battery_sn : this.packInfo.current_battery_sn,
  955. dev_id: this.scan_dev_id,
  956. pay_type: 9
  957. }
  958. const me = this
  959. //#ifdef MP-ALIPAY
  960. const from = 'ali'
  961. //#endif
  962. //#ifdef MP-WEIXIN
  963. const from = 'wx'
  964. //#endif
  965. http.postApi(config.API_CABINET_CHANGE_BATTERY2, pData, (resp) => {
  966. if (resp.data.code === 200) {
  967. // 钱包支付不需要支付直接换电 有换电次数可以直接换电
  968. if (!resp.data.data.need_pay) {
  969. me.orderInfo = {
  970. order_sn: resp.data.data.order_sn,
  971. empty_door_id: resp.data.data.empty_door_id,
  972. full_door_id: resp.data.data.full_door_id,
  973. cabbatterysn: resp.data.data.rtn_battery_sn || ''
  974. };
  975. me.navOpenCabinet(me.orderInfo)
  976. } else {
  977. me.setData({
  978. isShowToBuy: false
  979. })
  980. me.wxPayPrice = resp.data.data.price
  981. me.payResp = resp
  982. me.doPayBattery({})
  983. }
  984. } else {
  985. common.simpleToast(resp.data.msg)
  986. }
  987. })
  988. }
  989. } else {
  990. me.toPayOrFreeExchange()
  991. }
  992. }
  993. },
  994. }
  995. };
  996. </script>
  997. <style>
  998. @import './scanBtn.css';
  999. </style>