bluetoothPair.vue 11 KB

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