ServiceGuarantee.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <u-popup v-model="showPopup" @close="closePopup" @open="openPopup" mode="center" border-radius="20">
  3. <view class="popup-content">
  4. <view class="popup-title">服务保障</view>
  5. <view class="guarantee-list">
  6. <!-- 免费退回 -->
  7. <view class="guarantee-item">
  8. <view class="item-header">
  9. <u-icon name="gift-fill" size="40" color="#333"></u-icon>
  10. <text class="item-title">免费退回</text>
  11. </view>
  12. <view class="item-desc">本单不合格书籍可免费退回,您可在订单审核完成后,提交申请退回。</view>
  13. </view>
  14. <!-- 24小时验 -->
  15. <view class="guarantee-item">
  16. <view class="item-header">
  17. <u-icon name="clock-fill" size="40" color="#333"></u-icon>
  18. <text class="item-title">24小时验</text>
  19. </view>
  20. <view class="item-desc">本单获得24小时验资格,订单将在"到仓签收"后24小时内验货完毕,未完成验货将获得3元补贴到余额,可随验货书款一起提现。</view>
  21. </view>
  22. <!-- 极速打款 -->
  23. <view class="guarantee-item">
  24. <view class="item-header">
  25. <u-icon name="rmb-circle-fill" size="40" color="#333"></u-icon>
  26. <text class="item-title">极速打款</text>
  27. </view>
  28. <view class="item-desc">余额提现后,将在24小时内到账。</view>
  29. </view>
  30. <!-- 卖亏必赔 -->
  31. <view class="guarantee-item">
  32. <view class="item-header">
  33. <u-icon name="shield-fill" size="40" color="#333"></u-icon>
  34. <text class="item-title">卖亏必赔</text>
  35. </view>
  36. <view class="item-desc">订单完成后15天内,若发现订单内所售书籍发生涨价,可以申请补差。</view>
  37. </view>
  38. </view>
  39. <button class="confirm-btn" @click="closePopup">确定</button>
  40. </view>
  41. </u-popup>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. showPopup: false
  48. };
  49. },
  50. methods: {
  51. openPopup() {
  52. this.showPopup = true;
  53. },
  54. closePopup() {
  55. this.showPopup = false;
  56. }
  57. }
  58. };
  59. </script>
  60. <style lang="scss">
  61. .popup-content {
  62. background: #FFFFFF;
  63. padding: 40rpx;
  64. width: 600rpx;
  65. .popup-title {
  66. font-size: 32rpx;
  67. color: #333333;
  68. font-weight: 500;
  69. text-align: center;
  70. margin-bottom: 30rpx;
  71. }
  72. .guarantee-list {
  73. .guarantee-item {
  74. margin-bottom: 30rpx;
  75. .item-header {
  76. display: flex;
  77. align-items: center;
  78. margin-bottom: 10rpx;
  79. .item-title {
  80. font-size: 28rpx;
  81. color: #333333;
  82. font-weight: 500;
  83. margin-left: 10rpx;
  84. }
  85. }
  86. .item-desc {
  87. font-size: 26rpx;
  88. color: #666666;
  89. line-height: 1.5;
  90. padding-left: 50rpx;
  91. }
  92. }
  93. }
  94. .confirm-btn {
  95. width: 100%;
  96. height: 88rpx;
  97. line-height: 88rpx;
  98. background-color: #38C148;
  99. color: #FFFFFF;
  100. font-size: 32rpx;
  101. border-radius: 10rpx;
  102. border: none;
  103. margin-top: 20rpx;
  104. }
  105. }
  106. </style>