unlockSet.vue 6.1 KB

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