couponDetail.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="page-wrap">
  3. <view class="header-panel">
  4. <view class="price">38</view>
  5. <view class="text">三八女神节特惠券【通用券】</view>
  6. <view class="text">满100元可用</view>
  7. <view class="time">有效期:至 2023.12.31</view>
  8. <button class="btn">立即使用</button>
  9. </view>
  10. <view class="desc-panel">
  11. <view class="title">使用说明:</view>
  12. <view class="text">1、使用范围:所有品类可用。</view>
  13. <view class="text">2、可用于带<view class="tag">可用优惠券</view>标签的产品使用。</view>
  14. <view class="text">3、满足使用条件使用时,可享受对应的价格优惠。</view>
  15. <view class="text">4、一个订单仅限使用一张。</view>
  16. <view class="text">5、优惠券不能与其他优惠同时享用。</view>
  17. <view class="text">6、请注意使用日期,避免失效。</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .page-wrap{
  33. min-height: 100%;
  34. background: #fff;
  35. }
  36. .header-panel{
  37. height: 494.51rpx;
  38. background: #ff6e6e;
  39. text-align: center;
  40. color: #fff;
  41. .price{
  42. font-size: 137.36rpx;
  43. &:before{
  44. content: '¥';
  45. font-size: 76.92rpx;
  46. }
  47. }
  48. .text{
  49. font-size: 27.47rpx;
  50. line-height: 1.5;
  51. margin-bottom: 13.74rpx;
  52. }
  53. .time{
  54. font-size: 27.47rpx;
  55. color: #B63F40;
  56. line-height: 1.5;
  57. margin-bottom: 20.6rpx;
  58. }
  59. .btn{
  60. width: 384.62rpx;
  61. height: 89.29rpx;
  62. background: #fff;
  63. border: none;
  64. border-radius: 13.74rpx;
  65. font-size: 32.97rpx;
  66. color: #FF6E6E;
  67. line-height: 89.29rpx;
  68. }
  69. }
  70. .desc-panel{
  71. padding: 41.21rpx 31.59rpx;
  72. .title{
  73. font-size: 32.97rpx;
  74. }
  75. .text{
  76. font-size: 27.47rpx;
  77. word-break: break-all;
  78. line-height: 49.45rpx;
  79. }
  80. .tag{
  81. display: inline-block;
  82. font-size: 21.98rpx;
  83. color: #F97631;
  84. line-height: 34.34rpx;
  85. border: 1rpx solid #F97631;
  86. padding: 0 13.74rpx;
  87. vertical-align: text-bottom;
  88. margin: 0 13.74rpx;
  89. }
  90. }
  91. </style>