bluetoothPair.vue 12 KB

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