bluetoothPair.vue 8.3 KB

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