Notice.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
  3. <view class="dialog-content">
  4. <image :src="QINIU_URL + 'Fqb-i2uJWlZOg8EvUXHr_1qhlndf'" class="icon"/>
  5. <view class="title">{{ title }}</view>
  6. <view class="tips">
  7. <text v-if="type=='bluetoothPail'">{{text}}</text>
  8. <text v-else-if="type=='register'">我们已向 <span style="color: #0A59F7;">{{email}}</span> 发送注册邮件,请您登录邮箱点击链接完成注册。</text>
  9. <text v-else-if="type=='forgetPassword'">我们已向 <span style="color: #0A59F7;">{{email}}</span> 发送了一封密码重置邮件,请您登录邮箱操作处理。</text>
  10. </view>
  11. <view class="btn" @tap="close">{{ btnText }}</view>
  12. </view>
  13. </u-popup>
  14. </template>
  15. <script>
  16. import { QINIU_URL } from '@/common/constant'
  17. export default {
  18. props: {
  19. value: {
  20. type: Boolean,
  21. default: false
  22. },
  23. title: {
  24. type: String,
  25. default: ''
  26. },
  27. type: {
  28. type: String,
  29. default: ''
  30. },
  31. email: {
  32. type: String,
  33. default: ''
  34. },
  35. text: {
  36. type: String,
  37. default: ''
  38. },
  39. btnText: {
  40. type: String,
  41. default: '确定'
  42. }
  43. },
  44. data() {
  45. return {
  46. QINIU_URL,
  47. showDialog: this.value
  48. }
  49. },
  50. watch: {
  51. value(newValue) {
  52. this.showDialog = newValue
  53. }
  54. },
  55. methods: {
  56. close() {
  57. uni.navigateTo({
  58. url: '/pages/loginRegister/login',
  59. })
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss" scoped>
  65. .dialog-content {
  66. width: 100%;
  67. height: 100%;
  68. background: #F1F3F4;
  69. padding: 64rpx 32rpx;
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. .icon {
  74. width: 88rpx;
  75. height: 88rpx;
  76. }
  77. .title {
  78. font-family: PingFangSC, PingFang SC;
  79. font-weight: 600;
  80. font-size: 40rpx;
  81. color: #060809;
  82. margin: 32rpx 0 24rpx;
  83. }
  84. .tips {
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 400;
  87. font-size: 28rpx;
  88. color: #8B939C;
  89. line-height: 42rpx;
  90. text-align: center;
  91. padding: 0 80rpx;
  92. }
  93. .btn {
  94. margin-top: 68rpx;
  95. width: 100%;
  96. height: 80rpx;
  97. background: #060809;
  98. border-radius: 40rpx;
  99. color: #fff;
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. font-family: PingFangSC, PingFang SC;
  104. font-weight: 500;
  105. font-size: 32rpx;
  106. &:active {
  107. opacity: 0.8;
  108. }
  109. }
  110. }
  111. </style></style>