CenterDialog.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <view class="mask" v-if="visible">
  3. <view class="dialog">
  4. <view class="title">{{ dialogInfo.title }}</view>
  5. <view class="content">
  6. <rich-text :nodes="dialogInfo.content"></rich-text>
  7. </view>
  8. <view class="options">
  9. <view class="btn cancle" @tap="visible = false">{{ cancelText }}</view>
  10. <view class="btn confirm" @tap="confirm">{{ confirmText }}</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. cancelText: {
  19. type: String,
  20. default: '取消'
  21. },
  22. confirmText: {
  23. type: String,
  24. default: '确定'
  25. }
  26. },
  27. data() {
  28. return {
  29. visible: false,
  30. dialogInfo: {
  31. title: '',
  32. content: ''
  33. }
  34. }
  35. },
  36. methods: {
  37. open(info) {
  38. this.visible = true
  39. this.dialogInfo = info
  40. },
  41. confirm() {
  42. this.visible = false
  43. this.$emit('confirm')
  44. }
  45. }
  46. };
  47. </script>
  48. <style scoped lang="scss">
  49. .mask {
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. width: 100%;
  54. height: 100%;
  55. background: rgba(0, 0, 0, 0.5);
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. &-enter-active,
  60. &-leave-active {
  61. transition: opacity 0.3s ease;
  62. }
  63. &-enter,
  64. &-leave-to {
  65. opacity: 0;
  66. }
  67. }
  68. .dialog {
  69. padding: 48rpx 48rpx 0;
  70. width: 568rpx;
  71. min-height: 354rpx;
  72. background: #FFFFFF;
  73. border-radius: 40rpx;
  74. animation: fadeIn 0.3s ease;
  75. position: relative;
  76. padding-bottom: 80px;
  77. .title {
  78. font-family: PingFangSC, PingFang SC;
  79. font-weight: bold;
  80. font-size: 32rpx;
  81. color: #000;
  82. text-align: center;
  83. margin-bottom: 20rpx;
  84. }
  85. .content {
  86. font-weight: 400;
  87. font-size: 28rpx;
  88. color: #666666;
  89. line-height: 38rpx;
  90. }
  91. .options {
  92. background: #fff;
  93. border-bottom-left-radius: 40rpx;
  94. border-bottom-right-radius: 40rpx;
  95. position: absolute;
  96. bottom: 0;
  97. left: 0;
  98. z-index: 10;
  99. width: 100%;
  100. display: flex;
  101. justify-content: space-between;
  102. border-top: 2rpx solid #EAEAEA;
  103. &::after {
  104. content: "";
  105. position: absolute;
  106. left: 50%;
  107. top: 0;
  108. height: 100%;
  109. width: 2rpx;
  110. background: #EAEAEA;
  111. }
  112. .btn {
  113. flex: 1;
  114. text-align: center;
  115. padding: 32rpx 0;
  116. font-family: PingFangSC, PingFang SC;
  117. font-weight: 400;
  118. font-size: 32rpx;
  119. &:active {
  120. background: #EAEAEA;
  121. }
  122. &.cancle {
  123. border-bottom-left-radius: 40rpx;
  124. color: #191D23;
  125. }
  126. &.confirm {
  127. border-bottom-right-radius: 40rpx;
  128. color: #0A59F7;
  129. }
  130. }
  131. }
  132. }
  133. @keyframes fadeIn {
  134. from {
  135. transform: scale(0.8);
  136. opacity: 0;
  137. }
  138. to {
  139. transform: scale(1);
  140. opacity: 1;
  141. }
  142. }
  143. </style>