unlockSet.vue 6.9 KB

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