1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <view class="coupon">
- <view class="card">
- <view class="title">
- 定义说明
- </view>
- <view class="">
- 1.会员可享受本平台会员对应权益
- </view>
- <view class="">
- 2.权益对象:指成为本平台会员的所有用户,含各等级VIP用户
- </view>
- <view class="">
- 3.权益产生:平台根据运营实际情况设置等级及与等级相匹配的权益
- </view>
- </view>
-
- <view class="card">
- <view class="title">
- 消费返利
- </view>
- <view class="">
- 1.邀请者和被邀请者(粉丝)建立关系后,被邀请者所有订单消费邀请者均可享受返利。
- </view>
- <view class="">
- 2.邀请者等级不同,返利点不同。
- </view>
- <view class="">
- 3.返利比例生效于“升级对应会员时间”。(例如:2023.5.23 12:22)升级为V3,在这个时间点后粉丝下单生成的订单邀请者均按照V3会员比例返利。
- </view>
- <view class="">
- 4.订单完成(无法退款)后进行分润(返利)。
- </view>
- </view>
-
- <view class="card">
- <view class="title">
- 其他
- </view>
- <view class="">
- 1.返利比例由平台定义,平台如调整比例,对应会员等级返利可能会增加或减少。
- </view>
- <view class="">
- 2.如因不可抗因素终止活动,最终解释权归平台所有。
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style lang="scss" scoped>
- .coupon{
- background: #f1f1f1;
- height: 100vh;
- padding: 10rpx 20rpx;
- .card{
- margin: 20rpx 0;
- border-radius: 8px;
- background: #fff;
- padding: 20rpx;
- line-height: 50rpx;
- .title{
- font-size: 35rpx;
- font-weight: bold;
- line-height: 90rpx;
- }
- }
- }
- </style>
|