IosUnlockAuth.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
  3. <view class="dialog-content">
  4. IOS
  5. <view class="title">清先开启位置授权</view>
  6. <view class="tips">为保证 感应解锁 的正常使用,请 开启位置授权 并 打开精准位置 开关,可提高解锁成功率,且不会明显增加手机电量消耗。</view>
  7. <view class="authorization-wrap">
  8. <!-- <view class="corner-mark">授权引导</view> -->
  9. <view class="step-item">
  10. </view>
  11. </view>
  12. <view class="btn" @tap="close">我已开启</view>
  13. </view>
  14. </u-popup>
  15. </template>
  16. <script>
  17. export default {
  18. props: {
  19. value: {
  20. type: Boolean,
  21. default: false
  22. }
  23. },
  24. data() {
  25. return {
  26. showDialog: this.value
  27. }
  28. },
  29. watch: {
  30. value(newValue) {
  31. this.showDialog = newValue
  32. }
  33. },
  34. methods: {
  35. close() {
  36. this.$emit('input', false)
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="scss" scoped>
  42. .dialog-content {
  43. width: 100%;
  44. height: 100%;
  45. background: #F1F3F4;
  46. padding: 40rpx 32rpx;
  47. .title {
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 600;
  50. font-size: 40rpx;
  51. color: #060809;
  52. }
  53. .tips {
  54. font-family: PingFangSC, PingFang SC;
  55. font-weight: 400;
  56. font-size: 24rpx;
  57. color: #828DA2;
  58. line-height: 40rpx;
  59. margin: 32rpx 0 40rpx;
  60. }
  61. .authorization-wrap {
  62. background: #fff;
  63. width: 100%;
  64. height: 728rpx;
  65. width: 100%;
  66. border-radius: 40rpx;
  67. padding: 30rpx 24rpx;
  68. position: relative;
  69. .corner-mark {
  70. }
  71. }
  72. .btn {
  73. margin-top: 40rpx;
  74. width: 100%;
  75. height: 80rpx;
  76. background: #060809;
  77. border-radius: 40rpx;
  78. color: #fff;
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. font-family: PingFangSC, PingFang SC;
  83. font-weight: 500;
  84. font-size: 32rpx;
  85. &:active {
  86. opacity: 0.8;
  87. }
  88. }
  89. }
  90. </style>