bluetoothPair.vue 12 KB

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