DIalogXXSuccess.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <div class="dialog-xx-success">
  3. <el-dialog
  4. :visible.sync="modelVisible"
  5. :lock-scroll="false"
  6. width="600px">
  7. <div class="flex column center stretch">
  8. <div class="flex center img-wrap" v-if="imgShow">
  9. <img
  10. src="@/assets/img/msg_right.png"
  11. v-if="imgType" />
  12. <img
  13. src="@/assets/img/msg_error.png"
  14. v-else />
  15. </div>
  16. <div class="content-area">
  17. <div class="content" v-if="content">{{ content }}</div>
  18. <div
  19. v-if="desc && desc.length"
  20. class="desc">
  21. {{ desc }}
  22. </div>
  23. </div>
  24. <div class="flex center">
  25. <div
  26. class="btn-ok flex center"
  27. @click="notifyParent">
  28. OK
  29. </div>
  30. </div>
  31. </div>
  32. </el-dialog>
  33. </div>
  34. </template>
  35. <script>
  36. export default {
  37. props: {
  38. visible: {
  39. type: Boolean,
  40. default: false,
  41. },
  42. imgShow: {
  43. type: Boolean,
  44. default: true,
  45. },
  46. imgType: {
  47. type: Boolean,
  48. default: true,
  49. },
  50. content: {
  51. type: String,
  52. default: '',
  53. },
  54. desc: {
  55. type: String,
  56. default: '',
  57. },
  58. },
  59. data() {
  60. return {
  61. modelVisible: false,
  62. }
  63. },
  64. watch: {
  65. modelVisible(value) {
  66. this.$emit('update:visible', value)
  67. if (value) {
  68. document.addEventListener('keydown', this.close)
  69. } else {
  70. document.removeEventListener('keydown', this.close)
  71. }
  72. },
  73. visible() {
  74. this.modelVisible = this.visible
  75. },
  76. },
  77. methods: {
  78. notifyParent(){
  79. this.modelVisible = false
  80. this.$emit('notify-parent');
  81. },
  82. close(e) {
  83. if (e.keyCode === 13) {
  84. this.modelVisible = false
  85. }
  86. },
  87. },
  88. }
  89. </script>
  90. <style lang="scss">
  91. .dialog-xx-success {
  92. .el-dialog__header {
  93. position: relative;
  94. padding: 0px 20px;
  95. .el-dialog__headerbtn {
  96. position: absolute;
  97. top: -41px;
  98. right: 0;
  99. .el-icon-close:before {
  100. content: '\e78d';
  101. color: #fff;
  102. font-size: 22px;
  103. }
  104. }
  105. }
  106. .el-dialog__body {
  107. box-sizing: border-box;
  108. padding: 20px
  109. }
  110. .content-area {
  111. font-weight: bold;
  112. font-size: 26px;
  113. color: #00213b;
  114. text-align: center;
  115. margin-bottom: 38px;
  116. }
  117. .desc {
  118. margin-top: 31px;
  119. font-size: 16px;
  120. color: #666;
  121. line-height: 24px;
  122. }
  123. .img-wrap {
  124. margin-bottom: 20px;
  125. }
  126. img {
  127. width: 58px;
  128. }
  129. .btn-ok {
  130. cursor: pointer;
  131. color: #fff;
  132. font-size: 20px;
  133. font-family: Proxima Nova;
  134. font-weight: bold;
  135. width: 120px;
  136. height: 54px;
  137. background: #00213b;
  138. border-radius: 6px;
  139. }
  140. }
  141. </style>