bluetoothPair.vue 12 KB

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