1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <view>
- <view class="card">
- <view style="font-size: 28upx;font-weight: 600;">
- 亲爱的,您目前还不是代理会员哦
- </view>
- <view style="font-size:90upx;text-align: center;border-bottom: 4upx solid #502109;font-weight: 500;height: 130upx;">
- 代理会员
- </view>
- <view class="" style="font-size: 20upx;margin: 10upx 0;">
- <view>获得代理会员的方式如下:</view>
- <view>
- 使用账号的邀请码邀请5位新用户注册即可获得代理会员资格。
- </view>
- </view>
- </view>
- <view class="" style="font-size: 20upx;margin: 20upx;">
- 提示:邀请5位新用户升级为代理会员的时间为1个月,完成5位新用户后开始算时间满一个月后恢复到普通会员按照5个新用户一个节点满5个新用户就增加一个月的代理会员的资格上不封顶
- </view>
- <view style="background: white;padding: 20upx;font-weight: 600;font-size: 28upx;">
- <view class="" style="font-size: 30upx;">
- 代理会员独享特权
- </view>
- <view class="" style="margin-top: 40upx;">
- 1.邀请网店店主注册成交一笔返佣0.5元,上不封顶
- </view>
- <view class="" style="margin-top: 40upx;">
- 2.邀请直供厂家注册成交一笔返佣0.2元,上不封顶 </view>
- <view class="" style="margin-top: 40upx;">
- 3.邀请任意一个新用户注册奖励佣金50元一人(必须是注册后有正常使用的新用户才会奖励) </view>
- <view class="" style="margin-top: 40upx;margin-bottom: 20upx;">
- 4.佣金次月25号结算到账户内 </view>
- </view>
- <view class="" style="text-align: center;font-size: 24upx;margin-top: 20upx;color: #999999;">
- 本服务解释权在法律范围内归省心直供APP所有
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .card{
- background: linear-gradient(-45deg,#d2b887,#eedab7,#d2b887);
- margin: 20upx;
- border-radius: 130upx 0 130upx 0;
- padding: 20upx 80upx;
- color: #502109;
- }
- </style>
|