alertModel.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <script setup lang="ts">
  2. defineProps({
  3. title: {
  4. type: String,
  5. default: ''
  6. },
  7. content: {
  8. type: String,
  9. default: ''
  10. },
  11. cancelText: {
  12. type: String,
  13. default: '取消'
  14. },
  15. okText: {
  16. type: String,
  17. default: '确定'
  18. },
  19. showCancel: {
  20. type: Boolean,
  21. default: true
  22. }
  23. });
  24. const emits = defineEmits<{
  25. (e: 'cancel' ): void,
  26. (e: 'ok'): void
  27. }>()
  28. const closeHandle = () => {
  29. emits('cancel')
  30. }
  31. const submitHandle = () => {
  32. emits('ok')
  33. }
  34. </script>
  35. <template>
  36. <div class="alert-dialog">
  37. <div class="alert-title">
  38. <span class="title-text">{{title}}</span>
  39. </div>
  40. <div class="alert-content">
  41. {{content}}
  42. </div>
  43. <div class="alert-footer">
  44. <div v-if="showCancel" class="btn" @click.prevent="closeHandle">{{ cancelText }}</div>
  45. <div class="btn btn-primary" @click.prevent="submitHandle" >{{ okText }}</div>
  46. </div>
  47. </div>
  48. </template>
  49. <style scoped>
  50. .alert-dialog
  51. {
  52. width: 270px;
  53. height: auto;
  54. position: absolute;
  55. top: 50px;
  56. left: 50%;
  57. transform: translateX(-50%);
  58. background-color: #fff;
  59. border-radius: 5px;
  60. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  61. }
  62. .alert-dialog .alert-title
  63. {
  64. width: 100%;
  65. height: 30px;
  66. display: flex;
  67. justify-content: center;
  68. align-items: center;
  69. box-sizing: border-box;
  70. padding: 0 5px;
  71. font-size: 1.3em;
  72. }
  73. .alert-content
  74. {
  75. width: 100%;
  76. height: auto;
  77. padding: 8px 10px;
  78. text-wrap: avoid;
  79. box-sizing: border-box;
  80. overflow: auto;
  81. max-height: 300px;
  82. }
  83. .alert-footer
  84. {
  85. width: 100%;
  86. height: 40px;
  87. display: flex;
  88. justify-content: flex-end;
  89. align-items: center;
  90. }
  91. .alert-footer .btn
  92. {
  93. line-height: 30px;
  94. text-align: center;
  95. border-radius: 5px;
  96. margin: 0 5px;
  97. cursor: pointer;
  98. background-color: #f5f5f5;
  99. color: #333;
  100. }
  101. .alert-footer .btn:hover
  102. {
  103. background-color: #e6e6e6;
  104. color: #666;
  105. }
  106. .alert-footer .btn-primary
  107. {
  108. background-color: #409eff;
  109. color: #fff;
  110. }
  111. </style>