unlockSet.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. <!-- <slider v-model="sensitivityValue" @change="changeValue" height="16" :step="1" :min="0" :max="4" activeColor="#060809" backgroundColor="#F1F3F4" block-color="#060809" block-size="20"></slider> -->
  23. <u-slider v-model="sensitivityValue" height="16" :step="1" :min="0" :max="4" @end="changeValue" activeColor="#060809" backgroundColor="#F1F3F4" block-color="#060809"></u-slider>
  24. <view class="flex-row step-text">
  25. <text>最近</text>
  26. <text>适中</text>
  27. <text>最远</text>
  28. </view>
  29. <!-- <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> -->
  30. <!-- <u-slider v-model="sensitivityValue" height="16rpx" inactive-color="#F1F3F4" active-color="#060809" :step="1" :min="0" :max="4"></u-slider> -->
  31. </view>
  32. </u-popup>
  33. </view>
  34. </template>
  35. <script>
  36. var bluetooth = require('@/common/bluetooth.js');
  37. var app = getApp();
  38. export default {
  39. data () {
  40. return {
  41. showSensitivityDialog: true,
  42. sensitivityValue: 50
  43. }
  44. },
  45. onLoad(){
  46. this.sensitivityValue=app.globalData.nearLockInfo.level-0
  47. },
  48. methods: {
  49. close () {
  50. this.showSensitivityDialog = false
  51. },
  52. openSensitivityDialog(){
  53. this.showSensitivityDialog = true
  54. },
  55. changeValue(value){
  56. console.log(value,this.sensitivityValue);
  57. //value 0 1 2 3 4
  58. const car_sn = uni.getStorageSync('car_info').car_sn
  59. common.loading();
  60. bluetooth.setSensitivity(car_sn,value,()=>{
  61. console.log('设置灵敏度指令成功');
  62. })
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .unlockSet-page {
  69. background: #fff;
  70. min-height: 100vh;
  71. .lock-img {
  72. width: 100%;
  73. height: 400rpx;
  74. background: url('https://qiniu.bms16.com/Fi7jWl2Uf5zBsZHd77SK0RSGXiWr');
  75. background-size: 100%;
  76. }
  77. .main {
  78. padding: 0 40rpx;
  79. .primary-text {
  80. font-family: PingFangSC, PingFang SC;
  81. font-weight: bold;
  82. font-size: 36rpx;
  83. color: #060809;
  84. }
  85. .car-option-wrap {
  86. border-radius: 40rpx;
  87. margin: 40rpx 0 24rpx;
  88. .img {
  89. width: 100%;
  90. height: 316rpx;
  91. background: url('https://qiniu.bms16.com/FsscWX4rYSUO_RxdlCqHUPqYqXu1');
  92. background-size: 100%;
  93. }
  94. .opt-text-wrap {
  95. background: #DCF4FF;
  96. border-radius: 0rpx 0rpx 40rpx 40rpx;
  97. padding: 32rpx 0;
  98. text-align: center;
  99. .text {
  100. font-family: PingFangSC, PingFang SC;
  101. font-weight: bold;
  102. font-size: 32rpx;
  103. color: #060809;
  104. margin-bottom: 16rpx;
  105. }
  106. .sub-text {
  107. font-family: PingFangSC, PingFang SC;
  108. font-weight: 500;
  109. font-size: 24rpx;
  110. color: 5C676B;
  111. }
  112. }
  113. }
  114. .sensitivity-set {
  115. width: 100%;
  116. padding: 40rpx 32rpx;
  117. background: #F1F3F4;
  118. border-radius: 40rpx;
  119. .txt {
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: bold;
  122. font-size: 32rpx;
  123. color: #060809;
  124. text-align: left;
  125. font-style: normal;
  126. display: flex;
  127. align-items: center;
  128. &::before {
  129. content: "";
  130. width: 64rpx;
  131. height: 64rpx;
  132. margin-right: 16rpx;
  133. background: url('https://qiniu.bms16.com/Fo-sYIixqyae6oTXXyq3RAruvosJ');
  134. background-size: 100%;
  135. }
  136. }
  137. }
  138. }
  139. .switch-btn {
  140. font-family: PingFangSC, PingFang SC;
  141. font-weight: 400;
  142. font-size: 32rpx;
  143. color: #FA2918;
  144. position: absolute;
  145. bottom: 64rpx;
  146. left: 50%;
  147. transform: translateX(-50%);
  148. &:active {
  149. opacity: .6;
  150. }
  151. }
  152. .popup-content {
  153. padding: 40rpx 32rpx 164rpx;
  154. /deep/ .uni-slider-handle-wrapper {
  155. height: 16rpx !important;
  156. }
  157. .title {
  158. font-family: PingFangSC, PingFang SC;
  159. font-weight: bold;
  160. font-size: 40rpx;
  161. color: #060809;
  162. }
  163. .text {
  164. font-family: PingFangSC, PingFang SC;
  165. font-weight: 400;
  166. font-size: 24rpx;
  167. color: #828DA2;
  168. margin: 32rpx 0 40rpx;
  169. }
  170. }
  171. .step-text{
  172. margin-top: 32rpx;
  173. font-family: PingFangSC, PingFang SC;
  174. font-weight: 400;
  175. font-size: 28rpx;
  176. color: #060809;
  177. justify-content: space-between;
  178. }
  179. }
  180. </style>