bluetoothPair.vue 11 KB

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