index.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="coupon">
  3. <view class="card">
  4. <view class="title">
  5. 定义说明
  6. </view>
  7. <view class="">
  8. 1.会员可享受本平台会员对应权益
  9. </view>
  10. <view class="">
  11. 2.权益对象:指成为本平台会员的所有用户,含各等级VIP用户
  12. </view>
  13. <view class="">
  14. 3.权益产生:平台根据运营实际情况设置等级及与等级相匹配的权益
  15. </view>
  16. </view>
  17. <view class="card">
  18. <view class="title">
  19. 消费返利
  20. </view>
  21. <view class="">
  22. 1.邀请者和被邀请者(粉丝)建立关系后,被邀请者所有订单消费邀请者均可享受返利。
  23. </view>
  24. <view class="">
  25. 2.邀请者等级不同,返利点不同。
  26. </view>
  27. <view class="">
  28. 3.返利比例生效于“升级对应会员时间”。(例如:2023.5.23 12:22)升级为V3,在这个时间点后粉丝下单生成的订单邀请者均按照V3会员比例返利。
  29. </view>
  30. <view class="">
  31. 4.订单完成(无法退款)后进行分润(返利)。
  32. </view>
  33. </view>
  34. <view class="card">
  35. <view class="title">
  36. 其他
  37. </view>
  38. <view class="">
  39. 1.返利比例由平台定义,平台如调整比例,对应会员等级返利可能会增加或减少。
  40. </view>
  41. <view class="">
  42. 2.如因不可抗因素终止活动,最终解释权归平台所有。
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. .coupon{
  53. background: #f1f1f1;
  54. height: 100vh;
  55. padding: 10rpx 20rpx;
  56. .card{
  57. margin: 20rpx 0;
  58. border-radius: 8px;
  59. background: #fff;
  60. padding: 20rpx;
  61. line-height: 50rpx;
  62. .title{
  63. font-size: 35rpx;
  64. font-weight: bold;
  65. line-height: 90rpx;
  66. }
  67. }
  68. }
  69. </style>