IosUnlockAuth.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
  3. <view class="dialog-content">
  4. <view class="title">请先开启位置授权</view>
  5. <view class="tips">为保证 感应解锁 的正常使用,请 开启位置授权 并 打开精准位置 开关,可提高解锁成功率,且不会明显增加手机电量消耗。</view>
  6. <view class="authorization-wrap">
  7. <view class="corner-mark">授权引导</view>
  8. <view class="step-item">
  9. <view class="address-title-view flex-row">
  10. <image style="width: 62rpx;height: 84rpx;" src="https://qiniu.bms16.com/Fve-wxQ2MHOLXoQ3IZ7QdcKoLlwW" mode=""></image>
  11. <view class="address-title">
  12. <view>位置权限</view>
  13. <view class="address-text-tip">打开手机定位,并允许APP <text style="color: #0A59F7;">「始终」</text>使用</view>
  14. </view>
  15. </view>
  16. <view v-for="(item, idx) in authStepList" :key="idx" @tap="enablePermissions(item)" class="permission-set-view">
  17. <!-- <view class="permission-set-view" style="margin-bottom: 42rpx;"> -->
  18. <view class="icon-step"><image style="width: 160rpx;height: 78rpx;" src="https://qiniu.bms16.com/FvTiAtpG8QOlJxGrNquB-yI396Be" /></view>
  19. <view class="step-text">第<text style="font-size: 40rpx; font-weight: 600;margin: 0 6rpx;"> {{ idx+1 }} </text>步</view>
  20. <view class="permission-tip-view flex-row flex-between">
  21. <view class="permission-tip flex-row">
  22. {{ item.desc }}
  23. <image style="width: 28rpx;height: 28rpx;" src="https://qiniu.bms16.com/FrLjB8R1kL_AQNJjWUaKcDkLC-8O" />
  24. </view>
  25. <view :class="['turn-on-switch', item.state && 'is-open']">
  26. {{ item.state ? $t('已开启') : $t('未开启') }}
  27. </view>
  28. </view>
  29. <view class="permission-top-view">{{ item.title }}</view>
  30. <view v-if="item.type=='awalysLocation'" class="permission-one flex-row flex-between">
  31. <text class="alaways-text">始终</text>
  32. <image class="check-icon" src="https://qiniu.bms16.com/Fj595k1vS6PArDsvoPTkO8PcyqRc" mode=""></image>
  33. </view>
  34. </view>
  35. <!-- <view class="permission-set-view">
  36. <view class="icon-step"><image style="width: 160rpx;height: 78rpx;" src="https://qiniu.bms16.com/FvTiAtpG8QOlJxGrNquB-yI396Be" /></view>
  37. <view class="step-text">第<text style="font-size: 40rpx; font-weight: 600;margin: 0 6rpx;"> 2 </text>步</view>
  38. <view class="permission-tip-view flex-row flex-between">
  39. <view class="permission-tip flex-row">
  40. 开启请准位置开关
  41. <image style="width: 28rpx;height: 28rpx;" src="https://qiniu.bms16.com/FrLjB8R1kL_AQNJjWUaKcDkLC-8O" />
  42. </view>
  43. <view :class="['turn-on-switch', state && 'is-open']">
  44. {{ state ? $t('已开启') : $t('未开启') }}
  45. </view>
  46. </view>
  47. <view class="permission-top-view">精准位置</view>
  48. </view> -->
  49. </view>
  50. </view>
  51. <view class="btn" @tap="linkTo" >我已开启</view>
  52. </view>
  53. </u-popup>
  54. </template>
  55. <script>
  56. // import mixin from '@/mixin'; // 引入 mixin
  57. export default {
  58. // mixins:[mixin],
  59. props: {
  60. value: {
  61. type: Boolean,
  62. default: false
  63. }
  64. },
  65. data() {
  66. return {
  67. state:true,
  68. showDialog: this.value,
  69. authStepList:[],
  70. }
  71. },
  72. watch: {
  73. value(newValue) {
  74. this.showDialog = newValue
  75. if (newValue) {
  76. this._initCheckdPermission()
  77. }
  78. }
  79. },
  80. methods: {
  81. async _initCheckdPermission() {
  82. this.authStepList=app.globalData.permissionArr
  83. },
  84. close() {
  85. this.$emit('closePermission')
  86. },
  87. linkTo(){
  88. // let isOpenAllPermission=false
  89. // app.globalData.permissionArr.map(item=>{
  90. // if(!item.state) isOpenAllPermission=true
  91. // })
  92. // if (!isOpenAllPermission) {
  93. // this.close()
  94. // uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  95. // } else {
  96. // permision.gotoAppPermissionSetting()
  97. // }
  98. uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  99. }
  100. }
  101. }
  102. </script>
  103. <style lang="scss" scoped>
  104. .dialog-content {
  105. width: 100%;
  106. height: 100%;
  107. background: #F1F3F4;
  108. padding: 40rpx 32rpx;
  109. .title {
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 600;
  112. font-size: 40rpx;
  113. color: #060809;
  114. }
  115. .tips {
  116. font-family: PingFangSC, PingFang SC;
  117. font-weight: 400;
  118. font-size: 24rpx;
  119. color: #828DA2;
  120. line-height: 40rpx;
  121. margin: 32rpx 0 40rpx;
  122. }
  123. .authorization-wrap {
  124. background: #fff;
  125. // height: 728rpx;
  126. width: 100%;
  127. border-radius: 40rpx;
  128. // padding: 30rpx 24rpx;
  129. position: relative;
  130. .step-item{
  131. padding: 30rpx 24rpx;
  132. }
  133. .corner-mark {
  134. width: 224rpx;
  135. height: 80rpx;
  136. background: #0A59F7;
  137. border-radius: 40rpx 0 0 0;
  138. display: flex;
  139. color: #fff;
  140. line-height: 86rpx;
  141. text-align: center;
  142. justify-content: flex-end;
  143. &::after {
  144. content: "";
  145. width: 86rpx;
  146. height: 80rpx;
  147. background: url('https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi');
  148. background-size: 100%;
  149. }
  150. }
  151. .address-title-view{
  152. margin-bottom: 26rpx;
  153. }
  154. .address-title{
  155. font-family: PingFangSC, PingFang SC;
  156. font-weight: 600;
  157. font-size: 32rpx;
  158. margin-left: 26rpx;
  159. color: #060809;
  160. }
  161. .address-text-tip{
  162. font-weight: 400;
  163. font-size: 24rpx;
  164. color: #060809;
  165. margin-top: 16rpx;
  166. }
  167. .permission-set-view{
  168. background: #F4F5F6;
  169. border-radius: 24rpx;
  170. padding: 48rpx 36rpx 32rpx;
  171. position: relative;
  172. }
  173. .turn-on-switch {
  174. background: #FF791A;
  175. border-radius: 20rpx;
  176. font-size: 22rpx;
  177. color: #FFFFFF;
  178. display: flex;
  179. align-items: center;
  180. justify-content: center;
  181. padding: 8rpx 20rpx;
  182. &.is-open {
  183. background: #2ADA62;
  184. }
  185. }
  186. .icon-step{
  187. position: absolute;
  188. width: 160rpx;
  189. top: -10rpx;
  190. left: 0;
  191. z-index: 10;
  192. display: flex;
  193. align-items: center;
  194. }
  195. .step-text{
  196. position: absolute;
  197. width: 160rpx;
  198. top: -12rpx;
  199. left: 30rpx;
  200. z-index: 100;
  201. display: flex;
  202. align-items: center;
  203. }
  204. .permission-tip-view{
  205. margin-bottom: 20rpx;
  206. }
  207. .permission-tip{
  208. font-weight: 400;
  209. font-size: 24rpx;
  210. color: #060809;
  211. }
  212. .permission-top-view{
  213. font-weight: 600;
  214. font-size: 32rpx;
  215. color: #060809;
  216. margin-bottom: 20rpx;
  217. }
  218. .alaways-text{
  219. font-weight: 600;
  220. font-size: 32rpx;
  221. color: #0A59F7;
  222. }
  223. .check-icon{
  224. width: 40rpx;
  225. height: 40rpx;
  226. }
  227. }
  228. .btn {
  229. margin-top: 40rpx;
  230. width: 100%;
  231. height: 80rpx;
  232. background: #060809;
  233. border-radius: 40rpx;
  234. color: #fff;
  235. display: flex;
  236. align-items: center;
  237. justify-content: center;
  238. font-family: PingFangSC, PingFang SC;
  239. font-weight: 500;
  240. font-size: 32rpx;
  241. &:active {
  242. opacity: 0.8;
  243. }
  244. }
  245. }
  246. </style>