bluetoothPair.vue 11 KB

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