activityDetail.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view>
  3. <view class="out1">
  4. <view class="flex-col top">
  5. <view class="flex-row title">
  6. <text>活动名称</text>
  7. </view>
  8. <view class="flex-row price">
  9. <text>¥98.00</text>
  10. </view>
  11. <view class="flex-row">
  12. <text>活动时间:</text>
  13. <text>2024年8月10日 至 2099年10月1日</text>
  14. </view>
  15. <view class="flex-row">
  16. <text>是否退款:</text>
  17. <text>是</text>
  18. </view>
  19. <view class="flex-row">
  20. <text>
  21. 活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述
  22. </text>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="out1">
  27. <view class="flex-col top1">
  28. <view class="flex-row justify-center title">
  29. <text>退款策略(模块标题)</text>
  30. </view>
  31. <view class="flex-row">
  32. <text>
  33. 活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述活动描述
  34. </text>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="out2">
  39. <view class="flex-col ticket">
  40. <view class="flex-row justify-center title">
  41. <text>赠送优惠券</text>
  42. </view>
  43. <view class="flex-row ticketList" v-for="(i,index) in 2">
  44. <view class="h-text flex-col justify-center ">
  45. <text class="money">什么券</text>
  46. <text class="desc">满100可用</text>
  47. </view>
  48. <view class="h-center-content flex-col justify-around">
  49. <view class="h-value">
  50. <text>{{ item.name }}</text>
  51. </view>
  52. <view class="ticketMsg">
  53. 使用平台:
  54. <text>全平台</text>
  55. </view>
  56. <view class="ticketMsg">
  57. 使用次数:99
  58. </view>
  59. <view class="ticketMsg">
  60. 领取后30天内有效
  61. </view>
  62. <!-- <view class="ticketMsg flex-row">-->
  63. <!-- <text @click.stop="showRemark(item)">使用规则</text>-->
  64. <!-- <u-icon v-if="item.id == showRemarkId" name="arrow-down-fill" color="" size="12"></u-icon>-->
  65. <!-- <u-icon v-else name="play-right-fill" color="" size="12"></u-icon>-->
  66. <!-- </view>-->
  67. </view>
  68. <view class="h-right-content flex-col justify-center ">
  69. <view class="btn">
  70. <text>立即领取</text>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="flex-row justify-between link">
  76. <text>跳转一</text>
  77. <u-icon name="arrow-right" color="" size="12"></u-icon>
  78. </view>
  79. <view class="flex-row justify-between link">
  80. <text>跳转一</text>
  81. <u-icon name="arrow-right" color="" size="12"></u-icon>
  82. </view>
  83. </view>
  84. </view>
  85. </template>
  86. <script>
  87. export default {
  88. data() {
  89. return {}
  90. },
  91. methods: {}
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. @import '/common/css/common.css';
  96. @import './index.rpx.scss';
  97. </style>