scanBtn.vue 29 KB

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