unlockSet.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="unlockSet-page">
  3. <view class="lock-img"></view>
  4. <view class="main">
  5. <view class="primary-text">开启感应解锁后,携带手机靠近车辆并按Auto 键即可开机</view>
  6. <view class="car-option-wrap">
  7. <view class="img"></view>
  8. <view class="opt-text-wrap">
  9. <view class="text">{{ $t('按键解锁') }}</view>
  10. <view class="sub-text">手机接近车辆后,长按Auto键即可解锁</view>
  11. </view>
  12. </view>
  13. <view class="sensitivity-set" @tap="openSensitivityDialog">
  14. <view class="txt">{{ $t('灵敏度设置') }}</view>
  15. </view>
  16. </view>
  17. <view class="switch-btn">{{ $t('关闭感应解锁') }}</view>
  18. <u-popup v-model="showSensitivityDialog" mode="bottom" border-radius="28" @close="close">
  19. <view class="popup-content">
  20. <view class="title">灵敏度设置</view>
  21. <view class="text">距离建议适中,设置过近会降低成功率,设置过远可能会有风险</view>
  22. <u-slider v-model="sensitivityValue" :step="1" :min="0" :max="4" @end="changeValue"></u-slider>
  23. <slider v-model="sensitivityValue" @change="changeValue" height="16rpx" :step="1" :min="0" :max="4" activeColor="#060809" backgroundColor="#F1F3F4" block-color="#8A6DE9" block-size="20"></slider>
  24. <!-- <u-slider v-model="sensitivityValue" height="16rpx" inactive-color="#F1F3F4" active-color="#060809" :step="1" :min="0" :max="4"></u-slider> -->
  25. </view>
  26. </u-popup>
  27. </view>
  28. </template>
  29. <script>
  30. var bluetooth = require('@/common/bluetooth.js');
  31. export default {
  32. data () {
  33. return {
  34. showSensitivityDialog: true,
  35. sensitivityValue: 2
  36. }
  37. },
  38. onLoad(){
  39. bluetooth.getSensitivity('',()=>{
  40. })
  41. },
  42. methods: {
  43. close () {
  44. this.showSensitivityDialog = false
  45. },
  46. openSensitivityDialog(){
  47. this.showSensitivityDialog = true
  48. },
  49. changeValue(e){
  50. const type=e.detail.value
  51. bluetooth.setSensitivity('',type,()=>{
  52. console.log('设置灵敏度指令成功');
  53. })
  54. }
  55. }
  56. }
  57. </script>
  58. <style lang="scss" scoped>
  59. .unlockSet-page {
  60. background: #fff;
  61. min-height: 100vh;
  62. .lock-img {
  63. width: 100%;
  64. height: 400rpx;
  65. background: url('https://qiniu.bms16.com/Fi7jWl2Uf5zBsZHd77SK0RSGXiWr');
  66. background-size: 100%;
  67. }
  68. .main {
  69. padding: 0 40rpx;
  70. .primary-text {
  71. font-family: PingFangSC, PingFang SC;
  72. font-weight: bold;
  73. font-size: 36rpx;
  74. color: #060809;
  75. }
  76. .car-option-wrap {
  77. border-radius: 40rpx;
  78. margin: 40rpx 0 24rpx;
  79. .img {
  80. width: 100%;
  81. height: 316rpx;
  82. background: url('https://qiniu.bms16.com/FsscWX4rYSUO_RxdlCqHUPqYqXu1');
  83. background-size: 100%;
  84. }
  85. .opt-text-wrap {
  86. background: #DCF4FF;
  87. border-radius: 0rpx 0rpx 40rpx 40rpx;
  88. padding: 32rpx 0;
  89. text-align: center;
  90. .text {
  91. font-family: PingFangSC, PingFang SC;
  92. font-weight: bold;
  93. font-size: 32rpx;
  94. color: #060809;
  95. margin-bottom: 16rpx;
  96. }
  97. .sub-text {
  98. font-family: PingFangSC, PingFang SC;
  99. font-weight: 500;
  100. font-size: 24rpx;
  101. color: 5C676B;
  102. }
  103. }
  104. }
  105. .sensitivity-set {
  106. width: 100%;
  107. padding: 40rpx 32rpx;
  108. background: #F1F3F4;
  109. border-radius: 40rpx;
  110. .txt {
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: bold;
  113. font-size: 32rpx;
  114. color: #060809;
  115. text-align: left;
  116. font-style: normal;
  117. display: flex;
  118. align-items: center;
  119. &::before {
  120. content: "";
  121. width: 64rpx;
  122. height: 64rpx;
  123. margin-right: 16rpx;
  124. background: url('https://qiniu.bms16.com/Fo-sYIixqyae6oTXXyq3RAruvosJ');
  125. background-size: 100%;
  126. }
  127. }
  128. }
  129. }
  130. .switch-btn {
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 400;
  133. font-size: 32rpx;
  134. color: #FA2918;
  135. position: absolute;
  136. bottom: 64rpx;
  137. left: 50%;
  138. transform: translateX(-50%);
  139. &:active {
  140. opacity: .6;
  141. }
  142. }
  143. .popup-content {
  144. padding: 40rpx 32rpx 164rpx;
  145. /deep/ .uni-slider-handle-wrapper {
  146. height: 16rpx !important;
  147. }
  148. .title {
  149. font-family: PingFangSC, PingFang SC;
  150. font-weight: bold;
  151. font-size: 40rpx;
  152. color: #060809;
  153. }
  154. .text {
  155. font-family: PingFangSC, PingFang SC;
  156. font-weight: 400;
  157. font-size: 24rpx;
  158. color: #828DA2;
  159. margin: 32rpx 0 40rpx;
  160. }
  161. }
  162. }
  163. </style>