bluetoothPair.vue 11 KB

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