bluetoothPair.vue 11 KB

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