AndroidUnlockAuth.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
  3. <view class="dialog-content">
  4. <view class="title">{{ $t('开启感应解锁') }}</view>
  5. <view class="tips">为保证 感应解锁 的正常使用,请依次开以下权限,开启后可以显著提高解锁成功率,且不会明显增加手机电量消耗</view>
  6. <view class="authorization-wrap">
  7. <view class="corner-mark">{{ $t('授权引导') }}</view>
  8. <view class="step-item-container">
  9. <view class="step-item" v-for="(auth, idx) in authStepList" :key="idx">
  10. <view :class="['icon', `icon_${auth.type}`]"></view>
  11. <view class="desc-wrap">
  12. <view class="title-row">
  13. <view class="title">{{ auth.title }}</view>
  14. <view class="turn-on-switch is-open">{{ $t('已开启') }}</view>
  15. </view>
  16. <view class="desc">{{ auth.desc }}</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="btn" @tap="linkTo">{{ $t('我已开启') }}</view>
  22. </view>
  23. </u-popup>
  24. </template>
  25. <script>
  26. export default {
  27. props: {
  28. value: {
  29. type: Boolean,
  30. default: false
  31. }
  32. },
  33. data() {
  34. return {
  35. showDialog: this.value,
  36. }
  37. },
  38. computed: {
  39. authStepList() {
  40. const lang = v => this.$t(v)
  41. return [
  42. { title: lang('位置权限'), type: 'location', desc: '打开手机定位,并运行APP始终使用' },
  43. { title: lang('电池优化'), type: 'battery', desc: '打开电池优化设置, 将弗兰克APP加入保护名单' },
  44. { title: lang('后台运行'), type: 'backstage', desc: '打开后台运行权限 清选择手动控制' },
  45. { title: lang('打开应用锁'), type: 'appLock', desc: '打开应用权限锁' },
  46. ]
  47. }
  48. },
  49. watch: {
  50. value(newValue) {
  51. this.showDialog = newValue;
  52. }
  53. },
  54. methods: {
  55. linkTo() {
  56. uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  57. },
  58. close() {
  59. this.$emit('input', false);
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss" scoped>
  65. .dialog-content {
  66. width: 100%;
  67. height: 100%;
  68. background: #F1F3F4;
  69. padding: 40rpx 32rpx;
  70. .title {
  71. font-family: PingFangSC, PingFang SC;
  72. font-weight: 600;
  73. font-size: 40rpx;
  74. color: #060809;
  75. }
  76. .tips {
  77. font-family: PingFangSC, PingFang SC;
  78. font-weight: 400;
  79. font-size: 24rpx;
  80. color: #828DA2;
  81. line-height: 40rpx;
  82. margin: 32rpx 0 40rpx;
  83. }
  84. .authorization-wrap {
  85. background: #fff;
  86. width: 100%;
  87. border-radius: 40rpx;
  88. position: relative;
  89. .corner-mark {
  90. width: 224rpx;
  91. height: 100rpx;
  92. background: #0A59F7;
  93. border-radius: 40rpx 0 0 0;
  94. display: flex;
  95. color: #fff;
  96. line-height: 86rpx;
  97. text-align: center;
  98. justify-content: flex-end;
  99. &::after {
  100. content: "";
  101. width: 86rpx;
  102. height: 80rpx;
  103. background: url('https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi');
  104. background-size: 100%;
  105. }
  106. }
  107. .step-item-container {
  108. background: #fff;
  109. border-top-left-radius: 40rpx;
  110. padding: 30rpx 24rpx;
  111. margin-top: -24rpx;
  112. }
  113. .step-item {
  114. width: 100%;
  115. background: #F4F5F6;
  116. border-radius: 24rpx;
  117. padding: 32rpx 28rpx;
  118. margin-bottom: 24rpx;
  119. display: flex;
  120. align-items: center;
  121. &:last-child {
  122. margin-bottom: 0;
  123. }
  124. .desc-wrap {
  125. flex: 1;
  126. margin-left: 24rpx;
  127. }
  128. .title-row {
  129. display: flex;
  130. justify-content: space-between;
  131. margin-bottom: 24rpx;
  132. .title {
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 500;
  135. font-size: 32rpx;
  136. color: #060809;
  137. font-weight: bold;
  138. }
  139. .turn-on-switch {
  140. background: #2ADA62;
  141. border-radius: 20rpx;
  142. font-size: 22rpx;
  143. color: #FFFFFF;
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. padding: 8rpx 20rpx;
  148. }
  149. }
  150. .desc {
  151. font-size: 24rpx;
  152. color: #060809;
  153. }
  154. .icon {
  155. width: 66rpx;
  156. height: 70rpx;
  157. }
  158. .icon_location {
  159. background: url('https://qiniu.bms16.com/FpNU0wp-E5Iin60nT8_NwT1_h_xm');
  160. background-size: 100% 100%;
  161. }
  162. .icon_battery {
  163. background: url('https://qiniu.bms16.com/FjD4CXHuNUL85_JYI7w2MDucjeI-');
  164. background-size: 100% 100%;
  165. }
  166. .icon_backstage {
  167. background: url('https://qiniu.bms16.com/Fo7RGbv1gokn1iUQpF8tca5aUWkD');
  168. background-size: 100% 100%;
  169. }
  170. .icon_appLock {
  171. background: url('https://qiniu.bms16.com/FoWg_FjfV5_v9fxvFQ2dHzXOCDPD');
  172. background-size: 100% 100%;
  173. }
  174. }
  175. }
  176. .btn {
  177. margin-top: 40rpx;
  178. width: 100%;
  179. height: 80rpx;
  180. background: #060809;
  181. border-radius: 40rpx;
  182. color: #fff;
  183. display: flex;
  184. align-items: center;
  185. justify-content: center;
  186. font-family: PingFangSC, PingFang SC;
  187. font-weight: 500;
  188. font-size: 32rpx;
  189. &:active {
  190. opacity: 0.8;
  191. }
  192. }
  193. }
  194. </style>