invite-list.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jbetween">
  4. <text>邀请人</text>
  5. <view class="name" v-if="user.invite_code">{{user.parent_username}}</view>
  6. <text @click="tobind" v-else>绑定邀请人</text>
  7. </view>
  8. <view class="list">
  9. <view class="title">我的邀请</view>
  10. <view class="list-item hflex acenter jbetween" v-for="(item,index) in invite_list" :key="index">
  11. <view class="hflex acenter user">
  12. <image :src="item.avatar" mode="aspectFill"></image>
  13. <text>{{item.username}}</text>
  14. </view>
  15. <view class="time">{{item.created_at}}</view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import $api from '@/static/js/api.js'
  22. var that = ''
  23. export default {
  24. data() {
  25. return {
  26. user: {},
  27. invite_list: [],
  28. page: 1,
  29. last_page: 1,
  30. }
  31. },
  32. onLoad() {
  33. that = this
  34. },
  35. onShow() {
  36. this.getuser()
  37. this.page = 1
  38. this.invite_list = []
  39. this.getlist()
  40. },
  41. onReachBottom() {
  42. if (this.page < this.last_page) {
  43. this.page++
  44. this.getlist()
  45. } else {
  46. uni.$u.toast('已经到底了')
  47. return
  48. }
  49. },
  50. methods: {
  51. tobind() {
  52. uni.navigateTo({
  53. url: '/pageC/invite-bind'
  54. })
  55. },
  56. getuser() {
  57. $api.req({
  58. url: 'user/info',
  59. method: 'GET'
  60. }, function(res) {
  61. if (res.code == 10000) {
  62. that.user = res.data
  63. }
  64. })
  65. },
  66. getlist() {
  67. $api.req({
  68. url: 'user/children',
  69. method: 'get',
  70. data: {
  71. is_page: 1,
  72. page: that.page,
  73. limit: 10
  74. }
  75. }, function(res) {
  76. that.invite_list = that.invite_list.concat(res.data.list)
  77. that.last_page = res.data.last_page
  78. })
  79. }
  80. }
  81. }
  82. </script>
  83. <style lang="scss">
  84. .content {
  85. background: #F5F5F5;
  86. .top {
  87. height: 124rpx;
  88. box-sizing: border-box;
  89. padding: 40rpx 28rpx;
  90. background: #FFFFFF;
  91. border-top: 1px solid #F5F5F5;
  92. .name {
  93. flex: 1;
  94. font-size: 32rpx;
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 400;
  97. color: #333333;
  98. }
  99. text:first-child {
  100. padding-right: 16rpx;
  101. font-size: 32rpx;
  102. font-family: PingFangSC, PingFang SC;
  103. font-weight: 400;
  104. color: #333333;
  105. }
  106. text:last-child {
  107. font-size: 28rpx;
  108. font-family: PingFangSC, PingFang SC;
  109. font-weight: 400;
  110. color: #00B0B0;
  111. }
  112. }
  113. .list {
  114. margin-top: 20rpx;
  115. min-height: calc(100vh - 144rpx);
  116. background: #FFFFFF;
  117. padding: 40rpx 28rpx;
  118. box-sizing: border-box;
  119. .title {
  120. font-size: 32rpx;
  121. font-family: PingFangSC, PingFang SC;
  122. font-weight: 400;
  123. color: #333333;
  124. padding: 0 0 10rpx;
  125. }
  126. .list-item {
  127. padding: 32rpx 0;
  128. border-bottom: 1px solid #F5F5F5;
  129. .user {
  130. image {
  131. width: 80rpx;
  132. height: 80rpx;
  133. border-radius: 50%;
  134. margin: 0 28rpx 0 0;
  135. }
  136. text {
  137. font-size: 32rpx;
  138. font-family: PingFangSC, PingFang SC;
  139. font-weight: 400;
  140. color: #333333;
  141. }
  142. }
  143. .time {
  144. font-size: 28rpx;
  145. font-family: SFPro, SFPro;
  146. font-weight: 400;
  147. color: #666666;
  148. }
  149. }
  150. .list-item:last-child {
  151. border: none
  152. }
  153. }
  154. }
  155. </style>