unlockSet.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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="showSensitivityDialog = true">
  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"></u-slider>
  23. </view>
  24. </u-popup>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data () {
  30. return {
  31. showSensitivityDialog: true,
  32. sensitivityValue: 50
  33. }
  34. },
  35. methods: {
  36. close () {
  37. this.showSensitivityDialog = false
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .unlockSet-page {
  44. background: #fff;
  45. min-height: 100vh;
  46. .lock-img {
  47. width: 100%;
  48. height: 400rpx;
  49. background: url('https://qiniu.bms16.com/Fi7jWl2Uf5zBsZHd77SK0RSGXiWr');
  50. background-size: 100%;
  51. }
  52. .main {
  53. padding: 0 40rpx;
  54. .primary-text {
  55. font-family: PingFangSC, PingFang SC;
  56. font-weight: bold;
  57. font-size: 36rpx;
  58. color: #060809;
  59. }
  60. .car-option-wrap {
  61. border-radius: 40rpx;
  62. margin: 40rpx 0 24rpx;
  63. .img {
  64. width: 100%;
  65. height: 316rpx;
  66. background: url('https://qiniu.bms16.com/FsscWX4rYSUO_RxdlCqHUPqYqXu1');
  67. background-size: 100%;
  68. }
  69. .opt-text-wrap {
  70. background: #DCF4FF;
  71. border-radius: 0rpx 0rpx 40rpx 40rpx;
  72. padding: 32rpx 0;
  73. text-align: center;
  74. .text {
  75. font-family: PingFangSC, PingFang SC;
  76. font-weight: bold;
  77. font-size: 32rpx;
  78. color: #060809;
  79. margin-bottom: 16rpx;
  80. }
  81. .sub-text {
  82. font-family: PingFangSC, PingFang SC;
  83. font-weight: 500;
  84. font-size: 24rpx;
  85. color: 5C676B;
  86. }
  87. }
  88. }
  89. .sensitivity-set {
  90. width: 100%;
  91. padding: 40rpx 32rpx;
  92. background: #F1F3F4;
  93. border-radius: 40rpx;
  94. .txt {
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: bold;
  97. font-size: 32rpx;
  98. color: #060809;
  99. text-align: left;
  100. font-style: normal;
  101. display: flex;
  102. align-items: center;
  103. &::before {
  104. content: "";
  105. width: 64rpx;
  106. height: 64rpx;
  107. margin-right: 16rpx;
  108. background: url('https://qiniu.bms16.com/Fo-sYIixqyae6oTXXyq3RAruvosJ');
  109. background-size: 100%;
  110. }
  111. }
  112. }
  113. }
  114. .switch-btn {
  115. font-family: PingFangSC, PingFang SC;
  116. font-weight: 400;
  117. font-size: 32rpx;
  118. color: #FA2918;
  119. position: absolute;
  120. bottom: 64rpx;
  121. left: 50%;
  122. transform: translateX(-50%);
  123. &:active {
  124. opacity: .6;
  125. }
  126. }
  127. .popup-content {
  128. padding: 40rpx 32rpx 164rpx;
  129. .title {
  130. font-family: PingFangSC, PingFang SC;
  131. font-weight: bold;
  132. font-size: 40rpx;
  133. color: #060809;
  134. }
  135. .text {
  136. font-family: PingFangSC, PingFang SC;
  137. font-weight: 400;
  138. font-size: 24rpx;
  139. color: #828DA2;
  140. margin: 32rpx 0 40rpx;
  141. }
  142. }
  143. }
  144. </style>