agent.vue 2.0 KB

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