scanBtn.vue 29 KB

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