bluetoothPair.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. <viwe class="pair-btn" @tap="initiateBluetoothPairing">开始配对</viwe>
  22. <CenterDialog confirmText="配对" ref="centerDialog" />
  23. <Notice
  24. v-model="showNotice"
  25. title="感应解锁已开启"
  26. btnText="关闭"
  27. text='注意:请勿在手机蓝牙中忽略“电动车蓝牙02"设备,否则感应解锁功能将无法使用'
  28. />
  29. </view>
  30. </template>
  31. <script>
  32. import { QINIU_URL } from '@/common/constant'
  33. import CenterDialog from '@/component/comPopup/CenterDialog.vue';
  34. import Notice from '@/component/comPopup/Notice.vue';
  35. export default {
  36. components: {
  37. CenterDialog,
  38. Notice
  39. },
  40. data() {
  41. return {
  42. QINIU_URL,
  43. showNotice: false
  44. }
  45. },
  46. methods: {
  47. initiateBluetoothPairing() {
  48. const deviceName = '电动车蓝牙';
  49. const pairingCode = '1234567890';
  50. this.$refs.centerDialog.open({
  51. title: '蓝牙配对请求',
  52. content: `<span style="color:#060809;font-weight:bold">${deviceName}</span>
  53. 想与您配对,请确保显示的配对密钥为
  54. <span style="color:#060809;font-weight:bold">${pairingCode}</span>`
  55. });
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .bluetoothPair-page {
  62. padding: 56rpx 32rpx 48rpx;
  63. .car-wrap {
  64. width: 100%;
  65. background: #F1F3F4;
  66. border-radius: 32rpx;
  67. padding: 48rpx 32rpx 32rpx;
  68. text-align: center;
  69. .name {
  70. color: #060809;
  71. font-size: 32rpx;
  72. font-weight: bold;
  73. }
  74. .car-img {
  75. width: 480rpx;
  76. height: 324rpx;
  77. margin: 48rpx auto;
  78. display: block;
  79. }
  80. .pair-title {
  81. font-family: PingFangSC, PingFang SC;
  82. font-weight: 400;
  83. font-size: 24rpx;
  84. color: #060809;
  85. }
  86. .pair-options {
  87. margin-top: 30rpx;
  88. display: flex;
  89. justify-content: space-between;
  90. .btn {
  91. width: 302rpx;
  92. height: 80rpx;
  93. border-radius: 40rpx;
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. font-size: 32rpx;
  98. &.cancle {
  99. color: #060809;
  100. background: #E4E8E9;
  101. }
  102. &.confirm {
  103. color: #FFFFFF;
  104. background: #060809;
  105. }
  106. }
  107. }
  108. }
  109. .pair-desc {
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 400;
  112. font-size: 24rpx;
  113. color: #828DA2;
  114. text-align: left;
  115. margin: 24rpx 0 48rpx;
  116. .t {
  117. color: #060809;
  118. }
  119. }
  120. .pair-tips {
  121. .title {
  122. font-weight: 500;
  123. font-size: 32rpx;
  124. color: #060809;
  125. margin-bottom: 20rpx;
  126. }
  127. .text {
  128. font-weight: 400;
  129. font-size: 24rpx;
  130. color: #828DA2;
  131. }
  132. }
  133. .pair-btn {
  134. position: absolute;
  135. width: 91%;
  136. bottom: 48rpx;
  137. height: 80rpx;
  138. background: #060809;
  139. border-radius: 40rpx;
  140. display: flex;
  141. align-items: center;
  142. justify-content: center;
  143. font-size: 32rpx;
  144. color: #FFFFFF;
  145. &:active {
  146. opacity: .7;
  147. }
  148. }
  149. }
  150. </style>