Notice.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <rich-text :nodes="text"></rich-text>
  8. </view>
  9. <view class="btn" @tap="close">{{ btnText }}</view>
  10. </view>
  11. </u-popup>
  12. </template>
  13. <script>
  14. import { QINIU_URL } from '@/common/constant'
  15. export default {
  16. props: {
  17. value: {
  18. type: Boolean,
  19. default: false
  20. },
  21. title: {
  22. type: String,
  23. default: ''
  24. },
  25. text: {
  26. type: String,
  27. default: ''
  28. },
  29. btnText: {
  30. type: String,
  31. default: '确定'
  32. }
  33. },
  34. data() {
  35. return {
  36. QINIU_URL,
  37. showDialog: this.value
  38. }
  39. },
  40. watch: {
  41. value(newValue) {
  42. this.showDialog = newValue
  43. }
  44. },
  45. methods: {
  46. close() {
  47. this.$emit('input', false)
  48. }
  49. }
  50. }
  51. </script>
  52. <style lang="scss" scoped>
  53. .dialog-content {
  54. width: 100%;
  55. height: 100%;
  56. background: #F1F3F4;
  57. padding: 64rpx 32rpx;
  58. display: flex;
  59. flex-direction: column;
  60. align-items: center;
  61. .icon {
  62. width: 88rpx;
  63. height: 88rpx;
  64. }
  65. .title {
  66. font-family: PingFangSC, PingFang SC;
  67. font-weight: 600;
  68. font-size: 40rpx;
  69. color: #060809;
  70. margin: 32rpx 0 24rpx;
  71. }
  72. .tips {
  73. font-family: PingFangSC, PingFang SC;
  74. font-weight: 400;
  75. font-size: 28rpx;
  76. color: #8B939C;
  77. line-height: 42rpx;
  78. text-align: center;
  79. padding: 0 80rpx;
  80. }
  81. .btn {
  82. margin-top: 68rpx;
  83. width: 100%;
  84. height: 80rpx;
  85. background: #060809;
  86. border-radius: 40rpx;
  87. color: #fff;
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. font-family: PingFangSC, PingFang SC;
  92. font-weight: 500;
  93. font-size: 32rpx;
  94. &:active {
  95. opacity: 0.8;
  96. }
  97. }
  98. }
  99. </style></style>