bluetoothPair.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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. // this.setData({
  125. // bt_loading: false
  126. // });
  127. },
  128. () => {}
  129. );
  130. bluetooth.offCharacteristicStateChange(this.car_sn, 'home');
  131. bluetooth.offConnectionStateChange(this.car_sn, 'home');
  132. },
  133. switchNormal(){
  134. const me=this
  135. app.globalData.connectionState={}
  136. bluetooth.sendSwitchNormalCommand(this.car_sn, (res) => {
  137. // uni.hideLoading();
  138. console.log(res,'sendSwitchNormalCommand 切换正常工厂模式');
  139. //切换工厂模式以后蓝牙断开 重新连接蓝牙
  140. console.log(app.globalData,'app.globalData');
  141. me.loadBluetooth()
  142. // if (!res.connected) {
  143. // // 蓝牙未连接
  144. // common.simpleToast('蓝牙连接断开1111', 2000)
  145. // } else {
  146. // common.simpleToast('蓝牙连接成功2222', 2000)
  147. // }
  148. });
  149. },
  150. nearUnlockBtn(){
  151. bluetooth.nearUnlock(this.car_sn, (res) => {
  152. console.log('接近解锁下发成功');
  153. });
  154. },
  155. nearCloseUnlockBtn(){
  156. bluetooth.nearCloseUnlock(this.car_sn, (res) => {
  157. console.log('接近解锁下发成功');
  158. });
  159. },
  160. isBluetoothLock(mac_id){
  161. // if()
  162. bluetooth.getNearUnlockSet(mac_id, 'index',(res)=>{
  163. //下发打开接近解锁指令
  164. console.log('获取接近解锁下发成功');
  165. // common.simpleToast('蓝牙连接断开')
  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. //bluetooth.acceptDevice(device) 是否是蓝牙类型列表里面的
  178. if (bluetooth.acceptDevice(device)) {
  179. // 打开蓝牙连接
  180. bluetooth.openBluetoothAdapter((res) => {
  181. common.loading()
  182. bluetooth.connectDevice(device, () => {
  183. // bluetooth.getNearUnlockSet(device.mac_id,)
  184. // uni.hideLoading();
  185. //监听蓝牙设备连接状态变化事件
  186. bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
  187. if (!res.connected) {
  188. // 蓝牙连接断开
  189. console.log('蓝牙连接断开');
  190. me.loadBluetooth()
  191. // common.simpleToast('蓝牙连接断开')
  192. } else {
  193. console.log('蓝牙连接成功');
  194. // uni.hideLoading();
  195. me.isBluetoothLock(device.mac_id)
  196. }
  197. });
  198. // uni.hideLoading()
  199. // await bluetooth.sendOTACommand(device.mac_id, 'index', (res) => {
  200. // uni.hideLoading();
  201. // if (!res.connected) {
  202. // // 蓝牙未连接
  203. // common.simpleToast('蓝牙连接断开1111', 2000)
  204. // } else {
  205. // common.simpleToast('蓝牙连接成功2222', 2000)
  206. // }
  207. // });
  208. // console.log('test');
  209. // console.log(app.globalData.connectionStateChangeFunc,'app.globalData.connectionStateChangeFunc');
  210. //监听蓝牙特征值状态变化事件
  211. // bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
  212. // console.log(data,'datatest');
  213. // if (JSON.stringify(data) != '{}') {
  214. // if (data.state === DF_CAB_INFO_DONE) {
  215. // me.reportCabintInfo(device.mac_id, data.commandList);
  216. // uni.hideLoading();
  217. // common.simpleToast('蓝牙连接成功0000')
  218. // // 进行机柜蓝牙换电 API_DAYHIRE_CABINRT_BLUETOOTH_CHANGE_BATTERY
  219. // }
  220. // }
  221. // });
  222. // bluetooth.sendGetCabinetInfoCommand(
  223. // device.mac_id,
  224. // device,
  225. // (res) => {
  226. // common.loading();
  227. // },
  228. // (res) => {
  229. // uni.showModal({
  230. // title: '提示',
  231. // confirmText: '重新连接',
  232. // content: '连接失败,请尝试重新连接3333',
  233. // success: function(res) {
  234. // if (res.confirm) {
  235. // me.loadBluetooth();
  236. // } else {}
  237. // }
  238. // });
  239. // }
  240. // );
  241. },
  242. (res) => {
  243. console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限',res,res.errCode);
  244. uni.hideLoading();
  245. // var showContent = ""
  246. // if (res && ("errCode" in res)) {
  247. // if (res.errCode == 9000001) {
  248. // var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
  249. // } else {
  250. // var showContent = "连接失败,请尝试重新连接44444"+res.errCode
  251. // }
  252. // } else {
  253. // var showContent = "连接失败,请尝试重新连接55555"
  254. // }
  255. // uni.showModal({
  256. // title: '提示',
  257. // confirmText: '重新连接',
  258. // content: showContent,
  259. // success: function(res) {
  260. // if (res.confirm) {
  261. // me.loadBluetooth();
  262. // } else {}
  263. // }
  264. // });
  265. },
  266. (res) => {
  267. // console.log('蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666');
  268. uni.hideLoading();
  269. uni.showModal({
  270. title: '提示',
  271. confirmText: '我知道了',
  272. content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666',
  273. success: function(res) {
  274. if (res.confirm) {
  275. me.loadBluetooth();
  276. } else {}
  277. }
  278. });
  279. }
  280. );
  281. }, );
  282. } else {
  283. //蓝牙连接未成功
  284. console.log('当前机柜未找到符合的蓝牙类型');
  285. uni.hideLoading();
  286. // uni.showModal({
  287. // confirmText: '我知道了',
  288. // content: '当前机柜未找到符合的蓝牙类型',
  289. // showCancel: false,
  290. // title: '提示',
  291. // complete: (res) => {}
  292. // });
  293. }
  294. },
  295. }
  296. }
  297. </script>
  298. <style lang="scss" scoped>
  299. .bluetoothPair-page {
  300. padding: 56rpx 32rpx 48rpx;
  301. .car-wrap {
  302. width: 100%;
  303. background: #F1F3F4;
  304. border-radius: 32rpx;
  305. padding: 48rpx 32rpx 32rpx;
  306. text-align: center;
  307. .name {
  308. color: #060809;
  309. font-size: 32rpx;
  310. font-weight: bold;
  311. }
  312. .car-img {
  313. width: 480rpx;
  314. height: 324rpx;
  315. margin: 48rpx auto;
  316. display: block;
  317. }
  318. .pair-title {
  319. font-family: PingFangSC, PingFang SC;
  320. font-weight: 400;
  321. font-size: 24rpx;
  322. color: #060809;
  323. }
  324. .pair-options {
  325. margin-top: 30rpx;
  326. display: flex;
  327. justify-content: space-between;
  328. .btn {
  329. width: 302rpx;
  330. height: 80rpx;
  331. border-radius: 40rpx;
  332. display: flex;
  333. align-items: center;
  334. justify-content: center;
  335. font-size: 32rpx;
  336. &.cancle {
  337. color: #060809;
  338. background: #E4E8E9;
  339. }
  340. &.confirm {
  341. color: #FFFFFF;
  342. background: #060809;
  343. }
  344. }
  345. }
  346. }
  347. .pair-desc {
  348. font-family: PingFangSC, PingFang SC;
  349. font-weight: 400;
  350. font-size: 24rpx;
  351. color: #828DA2;
  352. text-align: left;
  353. margin: 24rpx 0 48rpx;
  354. .t {
  355. color: #060809;
  356. }
  357. }
  358. .pair-tips {
  359. .title {
  360. font-weight: 500;
  361. font-size: 32rpx;
  362. color: #060809;
  363. margin-bottom: 20rpx;
  364. }
  365. .text {
  366. font-weight: 400;
  367. font-size: 24rpx;
  368. color: #828DA2;
  369. }
  370. }
  371. .pair-btn {
  372. position: absolute;
  373. width: 91%;
  374. bottom: 48rpx;
  375. height: 80rpx;
  376. background: #060809;
  377. border-radius: 40rpx;
  378. display: flex;
  379. align-items: center;
  380. justify-content: center;
  381. font-size: 32rpx;
  382. color: #FFFFFF;
  383. &:active {
  384. opacity: .7;
  385. }
  386. }
  387. }
  388. </style>