agreePopup.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <view>
  3. <u-popup
  4. :show="agreeShow"
  5. @close="$emit('close')"
  6. :safeAreaInsetBottom="false"
  7. mode="center"
  8. round="10"
  9. >
  10. <view class="popup-content">
  11. <view class="title"> {{ title }} </view>
  12. <view class="btn-list">
  13. <button class="btn-2" @click="$emit('close')">取消</button>
  14. <button class="btn-1" @click="$emit('close', true)">提交</button>
  15. </view>
  16. </view>
  17. </u-popup>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. agreeShow: {
  24. typeof: Boolean,
  25. default: false,
  26. },
  27. title: {
  28. typeof: String,
  29. default: "",
  30. },
  31. },
  32. watch: {
  33. agreeShow() {
  34. console.log(111);
  35. },
  36. },
  37. data() {
  38. return {};
  39. },
  40. };
  41. </script>
  42. <style lang="scss" scoped>
  43. .popup-content {
  44. padding: 36rpx 28rpx;
  45. width: 450rpx;
  46. .title {
  47. font-size: 32rpx;
  48. color: #333;
  49. font-weight: 600;
  50. text-align: center;
  51. margin-bottom: 28rpx;
  52. }
  53. .btn-list {
  54. display: flex;
  55. justify-content: space-around;
  56. .btn-1 {
  57. background-color: #f83224;
  58. color: #fff;
  59. margin-top: 40rpx;
  60. border-radius: 38rpx;
  61. margin: 0;
  62. width: 188rpx;
  63. height: 76rpx;
  64. line-height: 76rpx;
  65. font-size: 32rpx;
  66. }
  67. .btn-2 {
  68. background-color: #fff;
  69. color: #f83224;
  70. margin-top: 40rpx;
  71. border-radius: 38rpx;
  72. border: 2rpx solid #f83224;
  73. margin: 0;
  74. width: 188rpx;
  75. height: 76rpx;
  76. line-height: 76rpx;
  77. font-size: 32rpx;
  78. }
  79. }
  80. }
  81. </style>