bluetoothPair.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. <template>
  2. <view class="bluetoothPair-page">
  3. <navBar name="开启感应解锁"></navBar>
  4. <view class="car-wrap">
  5. <view class="name">{{model_name}}</view>
  6. <image :src="QINIU_URL + 'Fi6CPKj4-raA86oizhL3PiXD4DkH'" class="car-img" />
  7. <view>
  8. <viwe class="pair-title">是否配对改设备</viwe>
  9. <view class="pair-options">
  10. <view class="btn cancle">取消</view>
  11. <view class="btn confirm">配对</view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="pair-desc">
  16. 点击下方 “ <text class="t">开始配对</text>”,请在系统弹窗中选择 “<text class="t">配对</text>”,以完成功能开启。
  17. </view>
  18. <view class="pair-tips">
  19. <view class="title">提示信息</view>
  20. <view class="text">使用感应解锁功能时,请务必保证手机蓝牙功能开启,在蓝牙列表中忽略此设备会导致感应解锁失败</view>
  21. </view>
  22. <!-- 测试指令!!!别删除 -->
  23. <view class="pair-btn" style="bottom: 340rpx;" @tap="nearCloseUnlockBtn">关闭靠近解锁</view>
  24. <!-- <view class="pair-btn" style="bottom: 240rpx;" @tap="nearUnlockBtn">靠近解锁</view> -->
  25. <!-- <view class="pair-btn" style="bottom: 140rpx;" @tap="otaUpgrade">OTA升级</view> -->
  26. <view class="pair-btn" @tap="initiateBluetoothPairing">开始配对</view>
  27. <CenterDialog confirmText="配对" ref="centerDialog" />
  28. <!-- <Notice v-model="showNotice" title="感应解锁已开启" btnText="关闭" type="bluetoothPail" text='注意:请勿在手机蓝牙中忽略“电动车蓝牙02"设备,否则感应解锁功能将无法使用' /> -->
  29. </view>
  30. </template>
  31. <script>
  32. import {
  33. QINIU_URL
  34. } from '@/common/constant'
  35. import CenterDialog from '@/component/comPopup/CenterDialog.vue';
  36. import Notice from '@/component/comPopup/Notice.vue';
  37. var bluetooth = require('@/common/bluetooth.js');
  38. import permision from "@/js_sdk/wa-permission/permission.js"
  39. const DF_CAB_INFO_DONE = 10000; //机柜信息传输完成
  40. var app = getApp();
  41. var config = require('../../common/config.js');
  42. var common = require('../../common/common.js');
  43. var http = require('../../common/http.js');
  44. var storage = require('../../common/storage.js');
  45. export default {
  46. components: {
  47. CenterDialog,
  48. Notice
  49. },
  50. data() {
  51. return {
  52. QINIU_URL,
  53. showNotice: false,
  54. model_name:'',
  55. car_sn:'',
  56. }
  57. },
  58. onLoad(){
  59. const { car_sn , model_name } = uni.getStorageSync('car_info')
  60. this.setData({
  61. model_name,
  62. car_sn
  63. })
  64. const isOpenBluetoothPermission=permision.checkBluetoothPermission()
  65. if(isOpenBluetoothPermission){
  66. bluetooth.initBluetooth()
  67. //初始化 连接蓝牙 -下发配对指令 -会断开连接-直接再次连接 记得不要提示可以蓝牙断开连接
  68. //点击配对-连接蓝牙-调用配对-确认配对 取消 断开蓝牙 不走逻辑
  69. this.bluetoothClose()
  70. }else{
  71. common.showContent('蓝牙未启用,请先打开蓝牙')
  72. }
  73. },
  74. methods: {
  75. otaUpgrade(){
  76. const me=this
  77. common.loading()
  78. console.log('开始升级');
  79. bluetooth.sendOTACommand(this.car_sn, (res) => {
  80. // uni.hideLoading();
  81. // console.log('结束?????');
  82. bluetooth.onConnectionStateChange(this.car_sn, 'index', (res) => {
  83. uni.hideLoading();
  84. if (!res.connected) {
  85. // 蓝牙未连接
  86. console.log('蓝牙连接断开11111');
  87. if(!res.connected){
  88. uni.showModal({
  89. title: '提示',
  90. confirmText: '重新连接',
  91. content: '蓝牙连接中断,是否重新连接?',
  92. success: function(res) {
  93. if (res.confirm) {
  94. me.loadBluetooth();
  95. } else {}
  96. }
  97. });
  98. }
  99. // common.simpleToast('蓝牙连接断开1111', 2000)
  100. } else {
  101. console.log('蓝牙连接成功2222');
  102. common.simpleToast('蓝牙连接成功', 2000)
  103. }
  104. });
  105. // if (!res.connected) {
  106. // // 蓝牙未连接
  107. // common.simpleToast('蓝牙连接断开1111', 2000)
  108. // } else {
  109. // common.simpleToast('蓝牙连接成功2222', 2000)
  110. // }
  111. });
  112. },
  113. initiateBluetoothPairing() {
  114. const deviceName = '电动车蓝牙';
  115. const pairingCode = '1234567890';
  116. // this.$refs.centerDialog.open({
  117. // title: '蓝牙配对请求',
  118. // content: `<span style="color:#060809;font-weight:bold">${deviceName}</span>
  119. // 想与您配对,请确保显示的配对密钥为
  120. // <span style="color:#060809;font-weight:bold">${pairingCode}</span>`
  121. // });
  122. this.loadBluetooth()
  123. },
  124. bluetoothClose: function() {
  125. console.log(11112222);
  126. bluetooth.closeBluetoothAdapter();
  127. bluetooth.closeDevice(
  128. this.car_sn,
  129. () => {
  130. console.log('关闭蓝牙连接');
  131. // this.setData({
  132. // bt_loading: false
  133. // });
  134. },
  135. () => {}
  136. );
  137. bluetooth.offCharacteristicStateChange(this.car_sn, 'index');
  138. bluetooth.offConnectionStateChange(this.car_sn, 'index');
  139. },
  140. switchNormal(){
  141. const me=this
  142. app.globalData.connectionState={}
  143. bluetooth.sendSwitchNormalCommand(this.car_sn, (res) => {
  144. // uni.hideLoading();
  145. console.log(res,'sendSwitchNormalCommand 切换正常工厂模式');
  146. //切换工厂模式以后蓝牙断开 重新连接蓝牙
  147. console.log(app.globalData,'app.globalData');
  148. me.loadBluetooth()
  149. // if (!res.connected) {
  150. // // 蓝牙未连接
  151. // common.simpleToast('蓝牙连接断开1111', 2000)
  152. // } else {
  153. // common.simpleToast('蓝牙连接成功2222', 2000)
  154. // }
  155. });
  156. },
  157. nearUnlockBtn(){
  158. bluetooth.nearUnlock(this.car_sn, (res) => {
  159. console.log('接近解锁下发成功');
  160. });
  161. },
  162. nearCloseUnlockBtn(){
  163. bluetooth.nearCloseUnlock(this.car_sn, (res) => {
  164. console.log('接近解锁下发成功');
  165. });
  166. },
  167. isBluetoothLock(mac_id){
  168. // if()
  169. bluetooth.getNearUnlockSet(mac_id, 'index',(res)=>{
  170. //下发打开接近解锁指令
  171. console.log('获取接近解锁下发成功');
  172. })
  173. },
  174. loadBluetooth() {
  175. const me = this;
  176. var device = {
  177. mac_id: this.car_sn,
  178. btid: this.car_sn,
  179. btkey: this.car_sn,
  180. bt_type: "ZXCAR",
  181. device_type: "ZXCAR"
  182. };
  183. app.globalData.connectionState={}
  184. //bluetooth.acceptDevice(device) 是否是蓝牙类型列表里面的
  185. if (bluetooth.acceptDevice(device)) {
  186. // 打开蓝牙连接
  187. bluetooth.openBluetoothAdapter((res) => {
  188. common.loading()
  189. bluetooth.connectDevice(device, () => {
  190. // bluetooth.getNearUnlockSet(device.mac_id,)
  191. // uni.hideLoading();
  192. //监听蓝牙设备连接状态变化事件
  193. bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
  194. if (!res.connected &&('lockType' in app.globalData.nearLockInfo &&app.globalData.nearLockInfo.lockType==0)) {
  195. // 蓝牙连接断开
  196. console.log('蓝牙连接断开');
  197. me.loadBluetooth()
  198. // common.simpleToast('蓝牙连接断开')
  199. } else {
  200. console.log('蓝牙连接成功');
  201. // uni.hideLoading();
  202. me.isBluetoothLock(device.mac_id)
  203. }
  204. });
  205. // uni.hideLoading()
  206. // await bluetooth.sendOTACommand(device.mac_id, 'index', (res) => {
  207. // uni.hideLoading();
  208. // if (!res.connected) {
  209. // // 蓝牙未连接
  210. // common.simpleToast('蓝牙连接断开1111', 2000)
  211. // } else {
  212. // common.simpleToast('蓝牙连接成功2222', 2000)
  213. // }
  214. // });
  215. // console.log('test');
  216. // console.log(app.globalData.connectionStateChangeFunc,'app.globalData.connectionStateChangeFunc');
  217. //监听蓝牙特征值状态变化事件
  218. // bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
  219. // console.log(data,'datatest');
  220. // if (JSON.stringify(data) != '{}') {
  221. // if (data.state === DF_CAB_INFO_DONE) {
  222. // me.reportCabintInfo(device.mac_id, data.commandList);
  223. // uni.hideLoading();
  224. // common.simpleToast('蓝牙连接成功0000')
  225. // // 进行机柜蓝牙换电 API_DAYHIRE_CABINRT_BLUETOOTH_CHANGE_BATTERY
  226. // }
  227. // }
  228. // });
  229. // bluetooth.sendGetCabinetInfoCommand(
  230. // device.mac_id,
  231. // device,
  232. // (res) => {
  233. // common.loading();
  234. // },
  235. // (res) => {
  236. // uni.showModal({
  237. // title: '提示',
  238. // confirmText: '重新连接',
  239. // content: '连接失败,请尝试重新连接3333',
  240. // success: function(res) {
  241. // if (res.confirm) {
  242. // me.loadBluetooth();
  243. // } else {}
  244. // }
  245. // });
  246. // }
  247. // );
  248. },
  249. (res) => {
  250. console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限',res,res.errCode);
  251. uni.hideLoading();
  252. var showContent = ""
  253. if (res && ("errCode" in res)) {
  254. if (res.errCode == 9000001) {
  255. var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
  256. } else {
  257. var showContent = "连接失败,请尝试重新连接44444"+res.errCode
  258. }
  259. } else {
  260. var showContent = "连接失败,请尝试重新连接55555"
  261. }
  262. uni.showModal({
  263. title: '提示',
  264. confirmText: '重新连接',
  265. content: showContent,
  266. success: function(res) {
  267. if (res.confirm) {
  268. me.loadBluetooth();
  269. } else {}
  270. }
  271. });
  272. },
  273. (res) => {
  274. // console.log('蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666');
  275. uni.hideLoading();
  276. uni.showModal({
  277. title: '提示',
  278. confirmText: '我知道了',
  279. content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666',
  280. success: function(res) {
  281. if (res.confirm) {
  282. me.loadBluetooth();
  283. } else {}
  284. }
  285. });
  286. }
  287. );
  288. }, );
  289. } else {
  290. //蓝牙连接未成功
  291. console.log('当前机柜未找到符合的蓝牙类型');
  292. uni.hideLoading();
  293. // uni.showModal({
  294. // confirmText: '我知道了',
  295. // content: '当前机柜未找到符合的蓝牙类型',
  296. // showCancel: false,
  297. // title: '提示',
  298. // complete: (res) => {}
  299. // });
  300. }
  301. },
  302. }
  303. }
  304. </script>
  305. <style lang="scss" scoped>
  306. .bluetoothPair-page {
  307. padding: 56rpx 32rpx 48rpx;
  308. .car-wrap {
  309. width: 100%;
  310. background: #F1F3F4;
  311. border-radius: 32rpx;
  312. padding: 48rpx 32rpx 32rpx;
  313. text-align: center;
  314. .name {
  315. color: #060809;
  316. font-size: 32rpx;
  317. font-weight: bold;
  318. }
  319. .car-img {
  320. width: 480rpx;
  321. height: 324rpx;
  322. margin: 48rpx auto;
  323. display: block;
  324. }
  325. .pair-title {
  326. font-family: PingFangSC, PingFang SC;
  327. font-weight: 400;
  328. font-size: 24rpx;
  329. color: #060809;
  330. }
  331. .pair-options {
  332. margin-top: 30rpx;
  333. display: flex;
  334. justify-content: space-between;
  335. .btn {
  336. width: 302rpx;
  337. height: 80rpx;
  338. border-radius: 40rpx;
  339. display: flex;
  340. align-items: center;
  341. justify-content: center;
  342. font-size: 32rpx;
  343. &.cancle {
  344. color: #060809;
  345. background: #E4E8E9;
  346. }
  347. &.confirm {
  348. color: #FFFFFF;
  349. background: #060809;
  350. }
  351. }
  352. }
  353. }
  354. .pair-desc {
  355. font-family: PingFangSC, PingFang SC;
  356. font-weight: 400;
  357. font-size: 24rpx;
  358. color: #828DA2;
  359. text-align: left;
  360. margin: 24rpx 0 48rpx;
  361. .t {
  362. color: #060809;
  363. }
  364. }
  365. .pair-tips {
  366. .title {
  367. font-weight: 500;
  368. font-size: 32rpx;
  369. color: #060809;
  370. margin-bottom: 20rpx;
  371. }
  372. .text {
  373. font-weight: 400;
  374. font-size: 24rpx;
  375. color: #828DA2;
  376. }
  377. }
  378. .pair-btn {
  379. position: absolute;
  380. width: 91%;
  381. bottom: 48rpx;
  382. height: 80rpx;
  383. background: #060809;
  384. border-radius: 40rpx;
  385. display: flex;
  386. align-items: center;
  387. justify-content: center;
  388. font-size: 32rpx;
  389. color: #FFFFFF;
  390. &:active {
  391. opacity: .7;
  392. }
  393. }
  394. }
  395. </style>