unlockSet.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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 common = require('@/common/common.js');
  44. export default {
  45. data() {
  46. return {
  47. stepIndex:1,
  48. start:0,
  49. end:0,
  50. showSensitivityDialog: false,
  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. const car_sn = uni.getStorageSync('car_info').car_sn
  102. common.loading();
  103. bluetooth.nearCloseUnlock(car_sn,()=>{
  104. console.log('关闭接近解锁成功');
  105. })
  106. }
  107. }
  108. }
  109. </script>
  110. <style lang="scss" scoped>
  111. .slider {
  112. width: 100%;
  113. position: relative;
  114. padding: 20rpx 0;
  115. .tag {
  116. width: 50rpx;
  117. height: 50rpx;
  118. // background-color: #060809;
  119. // border-radius: 50%;
  120. position: absolute;
  121. left: 0;
  122. top: 10rpx;
  123. z-index: 300;
  124. }
  125. .len {
  126. width: 50%;
  127. height: 20rpx;
  128. background-color: #060809;
  129. border-radius: 40rpx 0 0 40rpx;
  130. position: absolute;
  131. left: 0;
  132. top: 26rpx;
  133. z-index: 200;
  134. }
  135. .slider-bg{
  136. background: #F1F3F4;
  137. display: flex;
  138. flex-grow: 1;
  139. height: 20rpx;
  140. position: absolute;
  141. top: 26rpx;
  142. width: 100%;
  143. border-radius: 0 40rpx 40rpx 0;
  144. z-index: 100;
  145. }
  146. .icon-step{
  147. width: 32rpx;
  148. height: 48rpx;
  149. }
  150. }
  151. .unlockSet-page {
  152. background: #fff;
  153. min-height: 100vh;
  154. .lock-img {
  155. width: 100%;
  156. height: 400rpx;
  157. background: url('https://qiniu.bms16.com/Fi7jWl2Uf5zBsZHd77SK0RSGXiWr');
  158. background-size: 100%;
  159. }
  160. .main {
  161. padding: 0 40rpx;
  162. .primary-text {
  163. font-family: PingFangSC, PingFang SC;
  164. font-weight: bold;
  165. font-size: 36rpx;
  166. color: #060809;
  167. }
  168. .car-option-wrap {
  169. border-radius: 40rpx;
  170. margin: 40rpx 0 24rpx;
  171. .img {
  172. width: 100%;
  173. height: 316rpx;
  174. background: url('https://qiniu.bms16.com/FsscWX4rYSUO_RxdlCqHUPqYqXu1');
  175. background-size: 100%;
  176. }
  177. .opt-text-wrap {
  178. background: #DCF4FF;
  179. border-radius: 0rpx 0rpx 40rpx 40rpx;
  180. padding: 32rpx 0;
  181. text-align: center;
  182. .text {
  183. font-family: PingFangSC, PingFang SC;
  184. font-weight: bold;
  185. font-size: 32rpx;
  186. color: #060809;
  187. margin-bottom: 16rpx;
  188. }
  189. .sub-text {
  190. font-family: PingFangSC, PingFang SC;
  191. font-weight: 500;
  192. font-size: 24rpx;
  193. color: 5C676B;
  194. }
  195. }
  196. }
  197. .sensitivity-set {
  198. width: 100%;
  199. padding: 40rpx 32rpx;
  200. background: #F1F3F4;
  201. border-radius: 40rpx;
  202. .txt {
  203. font-family: PingFangSC, PingFang SC;
  204. font-weight: bold;
  205. font-size: 32rpx;
  206. color: #060809;
  207. text-align: left;
  208. font-style: normal;
  209. display: flex;
  210. align-items: center;
  211. &::before {
  212. content: "";
  213. width: 64rpx;
  214. height: 64rpx;
  215. margin-right: 16rpx;
  216. background: url('https://qiniu.bms16.com/Fo-sYIixqyae6oTXXyq3RAruvosJ');
  217. background-size: 100%;
  218. }
  219. }
  220. }
  221. }
  222. .switch-btn {
  223. font-family: PingFangSC, PingFang SC;
  224. font-weight: 400;
  225. font-size: 32rpx;
  226. color: #FA2918;
  227. position: absolute;
  228. bottom: 64rpx;
  229. left: 50%;
  230. transform: translateX(-50%);
  231. &:active {
  232. opacity: .6;
  233. }
  234. }
  235. .popup-content {
  236. padding: 40rpx 32rpx 164rpx;
  237. /deep/ .uni-slider-handle-wrapper {
  238. height: 16rpx !important;
  239. }
  240. .title {
  241. font-family: PingFangSC, PingFang SC;
  242. font-weight: bold;
  243. font-size: 40rpx;
  244. color: #060809;
  245. }
  246. .text {
  247. font-family: PingFangSC, PingFang SC;
  248. font-weight: 400;
  249. font-size: 24rpx;
  250. color: #828DA2;
  251. margin: 32rpx 0 40rpx;
  252. }
  253. }
  254. .step-text {
  255. margin-top: 32rpx;
  256. font-family: PingFangSC, PingFang SC;
  257. font-weight: 400;
  258. font-size: 28rpx;
  259. color: #060809;
  260. justify-content: space-between;
  261. }
  262. }
  263. </style>