addSuccess.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <view class="uni-popup-message">
  3. <view class="uni-popup-message__box fixforpc-width" :class="'uni-popup__'+[type]">
  4. <text class="uni-popup-message-text" :class="'uni-popup__'+[type]+'-text'">{{message}}</text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. /**
  10. * PopUp 弹出层-消息提示
  11. * @description 弹出层-消息提示
  12. * @tutorial https://ext.dcloud.net.cn/plugin?id=329
  13. * @property {String} type = [success|warning|info|error] 主题样式
  14. * @value success 成功
  15. * @value warning 提示
  16. * @value info 消息
  17. * @value error 错误
  18. * @property {String} message 消息提示文字
  19. * @property {String} duration 显示时间,设置为 0 则不会自动关闭
  20. */
  21. export default {
  22. name: 'UniPopupMessage',
  23. props: {
  24. /**
  25. * 主题 success/warning/info/error 默认 success
  26. */
  27. type: {
  28. type: String,
  29. default: 'success'
  30. },
  31. /**
  32. * 消息文字
  33. */
  34. message: {
  35. type: String,
  36. default: ''
  37. },
  38. /**
  39. * 显示时间,设置为 0 则不会自动关闭
  40. */
  41. duration: {
  42. type: Number,
  43. default: 3000
  44. }
  45. },
  46. inject: ['popup'],
  47. data() {
  48. return {}
  49. },
  50. created() {
  51. this.popup.childrenMsg = this
  52. },
  53. methods: {
  54. open() {
  55. if (this.duration === 0) return
  56. clearTimeout(this.popuptimer)
  57. this.popuptimer = setTimeout(() => {
  58. this.popup.close()
  59. }, this.duration)
  60. },
  61. close() {
  62. clearTimeout(this.popuptimer)
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .uni-popup-message {
  69. /* #ifndef APP-NVUE */
  70. display: flex;
  71. /* #endif */
  72. flex-direction: row;
  73. justify-content: center;
  74. text-align: center;
  75. }
  76. .uni-popup-message__box {
  77. background-color: #e1f3d8;
  78. // padding: 10px 15px;
  79. border-color: #eee;
  80. border-style: solid;
  81. border-width: 1px;
  82. flex: 1;
  83. }
  84. @media screen and (min-width: 500px) {
  85. .fixforpc-width {
  86. margin-top: 20px;
  87. border-radius: 4px;
  88. flex: none;
  89. min-width: 380px;
  90. /* #ifndef APP-NVUE */
  91. max-width: 50%;
  92. /* #endif */
  93. /* #ifdef APP-NVUE */
  94. max-width: 500px;
  95. /* #endif */
  96. }
  97. }
  98. .uni-popup-message-text {
  99. font-size: 14px;
  100. padding: 0;
  101. }
  102. .uni-popup__success {
  103. background-color: #e1f3d8;
  104. }
  105. .uni-popup__success-text {
  106. color: #67C23A;
  107. }
  108. .uni-popup__warn {
  109. background-color: #faecd8;
  110. }
  111. .uni-popup__warn-text {
  112. color: #E6A23C;
  113. }
  114. .uni-popup__error {
  115. background-color: #fde2e2;
  116. }
  117. .uni-popup__error-text {
  118. color: #F56C6C;
  119. }
  120. .uni-popup__info {
  121. background-color: #F2F6FC;
  122. }
  123. .uni-popup__info-text {
  124. color: #909399;
  125. }
  126. /*
  127. *
  128. *我自定义的信息
  129. */
  130. .uni-popup__myMessge {
  131. background-color: #0079FE;
  132. }
  133. .uni-popup__myMessge-text {
  134. color: #FFFFFF;
  135. font-size: 12px;
  136. }
  137. </style>