scanBtn.vue 29 KB

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