agreePopup.vue 1.3 KB

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