Confirm.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <view class="modal-mask">
  3. <transition name="confirm-fade">
  4. <view class="confirm-container" v-show="showFlag">
  5. <view class="popup-title">{{ title }}</view>
  6. <view class="popup-content">{{ text }}</view>
  7. <view class="flex-row modal-footer">
  8. <view class="show-btn cencel-btn-pop" v-if="showCancelButton" @tap="cancel">{{ cancelBtnText }}</view>
  9. <view class="show-btn ok-btn-pop" @tap="confirm">{{ confirmBtnText }}</view>
  10. </view>
  11. </view>
  12. </transition>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. showFlag: false,
  20. title: "温馨提示",
  21. text: '请传入描述文本', // 描述文本
  22. confirmBtnText: "确定",
  23. cancelBtnText: "取消",
  24. showCancelButton: true, // 是否显示取消按钮
  25. };
  26. },
  27. methods: {
  28. show(cb) {
  29. this.showFlag = true;
  30. typeof cb === "function" && cb.call(this, this);
  31. return new Promise((resolve, reject) => {
  32. this.reject = reject;
  33. this.resolve = resolve;
  34. });
  35. },
  36. cancel() {
  37. this.reject("cancel")
  38. this.hide()
  39. },
  40. confirm() {
  41. this.resolve("confirm")
  42. this.hide()
  43. },
  44. hide() {
  45. this.showFlag = false
  46. document.body.removeChild(this.$el)
  47. this.$destroy()
  48. }
  49. }
  50. };
  51. </script>
  52. <style lang="scss" scoped>
  53. .modal-mask {
  54. position: fixed;
  55. top: 0;
  56. left: 0;
  57. width: 100%;
  58. height: 100%;
  59. background-color: rgba(0, 0, 0, 0.5);
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. z-index: 9999;
  64. .confirm-container {
  65. background-color: #fff;
  66. padding: 48rpx;
  67. border-radius: 40rpx;
  68. width: 75%;
  69. .popup-title {
  70. font-weight: 600;
  71. font-size: 36rpx;
  72. color: #060809;
  73. text-align: center;
  74. margin-bottom: 26rpx;
  75. font-family: PingFangSC, PingFang SC;
  76. }
  77. .popup-content {
  78. text-align: center;
  79. font-weight: 400;
  80. font-size: 28rpx;
  81. color: #828384;
  82. margin-bottom: 42rpx;
  83. font-family: PingFangSC, PingFang SC;
  84. line-height: 40rpx;
  85. }
  86. &.confirm-fade-enter-active {
  87. animation: confirm-fadein 0.3s;
  88. .confirm-content {
  89. animation: confirm-zoom 0.3s;
  90. }
  91. }
  92. }
  93. .modal-footer {
  94. width: 100%;
  95. align-items: center;
  96. .show-btn {
  97. border-radius: 40rpx;
  98. flex: 1;
  99. text-align: center;
  100. font-weight: 600;
  101. font-size: 32rpx;
  102. border-radius: 40rpx;
  103. height: 80rpx;
  104. line-height: 80rpx;
  105. &:active {
  106. opacity: 0.7;
  107. }
  108. }
  109. .cencel-btn-pop {
  110. color: #060809;
  111. background: #EBECEC;
  112. margin-right: 12rpx;
  113. }
  114. .ok-btn-pop {
  115. color: #FFFFFF;
  116. background: #060809;
  117. }
  118. }
  119. }
  120. @keyframes confirm-fadein {
  121. 0% {
  122. opacity: 0;
  123. }
  124. 100% {
  125. opacity: 1;
  126. }
  127. }
  128. @keyframes confirm-zoom {
  129. 0% {
  130. transform: scale(0);
  131. }
  132. 50% {
  133. transform: scale(1.1);
  134. }
  135. 100% {
  136. transform: scale(1);
  137. }
  138. }
  139. </style>