Confirm.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="modal-mask" v-if="value">
  3. <view class="confirm-container">
  4. <view class="popup-title">{{ dialogInfo.title }}</view>
  5. <view class="popup-content">{{ dialogInfo.text }}</view>
  6. <view class="flex-row modal-footer">
  7. <view class="show-btn cencel-btn-pop" v-if="dialogInfo.showCancelButton" @tap="cancel">
  8. {{ dialogInfo.cancelBtnText }}
  9. </view>
  10. <view class="show-btn ok-btn-pop" @tap="confirm">{{ dialogInfo.confirmBtnText }}</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. value: {
  19. type: Boolean,
  20. default: false
  21. },
  22. dialogInfo: {
  23. type: Object,
  24. default: () => ({})
  25. }
  26. },
  27. methods: {
  28. cancel() {
  29. this.hide()
  30. },
  31. confirm() {
  32. this.hide()
  33. const { opType = null } = this.dialogInfo
  34. this.$emit("confirm", opType)
  35. },
  36. hide() {
  37. this.$emit("input", false)
  38. }
  39. }
  40. };
  41. </script>
  42. <style lang="scss" scoped>
  43. .modal-mask {
  44. position: fixed;
  45. top: 0;
  46. left: 0;
  47. width: 100%;
  48. height: 100%;
  49. background-color: rgba(0, 0, 0, 0.5);
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. z-index: 9999;
  54. .confirm-container {
  55. background-color: #fff;
  56. padding: 48rpx;
  57. border-radius: 40rpx;
  58. width: 75%;
  59. .popup-title {
  60. font-weight: 600;
  61. font-size: 36rpx;
  62. color: #060809;
  63. text-align: center;
  64. margin-bottom: 26rpx;
  65. font-family: PingFangSC, PingFang SC;
  66. }
  67. .popup-content {
  68. text-align: center;
  69. font-weight: 400;
  70. font-size: 28rpx;
  71. color: #828384;
  72. margin-bottom: 42rpx;
  73. font-family: PingFangSC, PingFang SC;
  74. line-height: 40rpx;
  75. }
  76. }
  77. .modal-footer {
  78. width: 100%;
  79. align-items: center;
  80. .show-btn {
  81. border-radius: 40rpx;
  82. flex: 1;
  83. text-align: center;
  84. font-weight: 600;
  85. font-size: 32rpx;
  86. border-radius: 40rpx;
  87. height: 80rpx;
  88. line-height: 80rpx;
  89. &:active {
  90. opacity: 0.7;
  91. }
  92. }
  93. .cencel-btn-pop {
  94. color: #060809;
  95. background: #EBECEC;
  96. margin-right: 12rpx;
  97. }
  98. .ok-btn-pop {
  99. color: #FFFFFF;
  100. background: #060809;
  101. }
  102. }
  103. }
  104. @keyframes confirm-fadein {
  105. 0% {
  106. opacity: 0;
  107. }
  108. 100% {
  109. opacity: 1;
  110. }
  111. }
  112. @keyframes confirm-zoom {
  113. 0% {
  114. transform: scale(0);
  115. }
  116. 50% {
  117. transform: scale(1.1);
  118. }
  119. 100% {
  120. transform: scale(1);
  121. }
  122. }
  123. </style>