bluetoothPair.vue 10 KB

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