Notice.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. this.$emit('input', false)
  58. }
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. .dialog-content {
  64. width: 100%;
  65. height: 100%;
  66. background: #F1F3F4;
  67. padding: 64rpx 32rpx;
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. .icon {
  72. width: 88rpx;
  73. height: 88rpx;
  74. }
  75. .title {
  76. font-family: PingFangSC, PingFang SC;
  77. font-weight: 600;
  78. font-size: 40rpx;
  79. color: #060809;
  80. margin: 32rpx 0 24rpx;
  81. }
  82. .tips {
  83. font-family: PingFangSC, PingFang SC;
  84. font-weight: 400;
  85. font-size: 28rpx;
  86. color: #8B939C;
  87. line-height: 42rpx;
  88. text-align: center;
  89. padding: 0 80rpx;
  90. }
  91. .btn {
  92. margin-top: 68rpx;
  93. width: 100%;
  94. height: 80rpx;
  95. background: #060809;
  96. border-radius: 40rpx;
  97. color: #fff;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 500;
  103. font-size: 32rpx;
  104. &:active {
  105. opacity: 0.8;
  106. }
  107. }
  108. }
  109. </style></style>