invite-list.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <view class="web_box">
  3. <view class="top hflex acenter jbetween">
  4. <view class="top_item vflex acenter jcenter">
  5. <view class="num">{{total}}</view>
  6. <view class="text">已邀好友</view>
  7. </view>
  8. <view class="top_item vflex acenter jcenter">
  9. <view class="num">¥{{sum || 0.0}}</view>
  10. <view class="hflex acenter">
  11. <view class="text">已获佣金</view>
  12. <u-icon name="question-circle" color="#fff" size="28" @click="show = true"></u-icon>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="list">
  17. <view class="tabs hflex acenter jbetween">
  18. <view class="tabs_item" :class="tab_active == index ? 'tab_active' : ''" v-for="(item,index) in tabs"
  19. :key="index" @click="changetab(index)">{{item.name}}</view>
  20. </view>
  21. <view class="table">
  22. <view class="head hflex acenter jbetween">
  23. <view class="text" style="width: 20%;">头像</view>
  24. <view class="text" style="width: 20%;">昵称</view>
  25. <view class="text" style="width: 50%;">时间</view>
  26. </view>
  27. <view class="item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  28. <view class="text hflex acenter jcenter" style="width: 20%;">
  29. <image :src="item.avatar" mode="aspectFill" class="avatar"></image>
  30. </view>
  31. <view class="text" style="width: 30%;">{{item.username}}</view>
  32. <view class="text" style="width: 40%;">{{item.createtime}}</view>
  33. </view>
  34. </view>
  35. </view>
  36. <u-popup v-model="show" mode="bottom" :closeable="false" border-radius="20">
  37. <view class="popu">
  38. <view class="title">佣金说明</view>
  39. <view class="content">{{content}}</view>
  40. <button class="btn" @click="show = false">我知道了</button>
  41. </view>
  42. </u-popup>
  43. </view>
  44. </template>
  45. <script>
  46. import {
  47. invite_list,
  48. get_agreement_detail,
  49. parent_info
  50. } from "@/units/inquire.js"
  51. export default {
  52. data() {
  53. return {
  54. page: 1,
  55. total: 0,
  56. list: [],
  57. sum: '',
  58. tabs: [{
  59. id: '1',
  60. name: '我的邀请人'
  61. },
  62. {
  63. id: '2',
  64. name: '上级邀请人'
  65. }
  66. ],
  67. tab_active: 0,
  68. content: '',
  69. show: false
  70. }
  71. },
  72. onLoad(options) {
  73. this.sum = Number(options.money).toFixed(1)
  74. this.getlist()
  75. this.getconfig()
  76. },
  77. onReachBottom() {
  78. if (this.total != this.list.length) {
  79. this.page++
  80. this.getlist()
  81. }
  82. },
  83. methods: {
  84. getlist() {
  85. invite_list({
  86. page: this.page
  87. }).then((res) => {
  88. this.list = this.list.concat(res.data.data)
  89. this.total = res.data.total
  90. })
  91. },
  92. getdata() {
  93. parent_info().then((res) => {
  94. this.list = []
  95. this.list.push(res.data)
  96. })
  97. },
  98. getconfig() {
  99. get_agreement_detail({
  100. code: 'commission_balance'
  101. }).then((res) => {
  102. this.content = res.data.content
  103. })
  104. },
  105. changetab(index) {
  106. this.tab_active = index
  107. if (index == '0') {
  108. this.page = 1
  109. this.getlist()
  110. } else {
  111. this.getdata()
  112. }
  113. }
  114. }
  115. }
  116. </script>
  117. <style lang="scss">
  118. .web_box {
  119. padding: 18rpx 30rpx;
  120. .top {
  121. background: url('/pagesD/static/images/invite-bg.png') no-repeat;
  122. background-size: 100%;
  123. padding: 50rpx;
  124. .top_item {
  125. width: 50%;
  126. .num {
  127. font-size: 36rpx;
  128. font-family: JDZhengHT, JDZhengHT;
  129. font-weight: 400;
  130. color: #FFFFFF;
  131. padding: 0 0 28rpx;
  132. }
  133. .text {
  134. font-size: 24rpx;
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. color: #FFFFFF;
  138. }
  139. }
  140. .top_item:nth-child(1) {
  141. border-right: 1rpx solid rgba(255, 255, 255, .2);
  142. }
  143. }
  144. .list {
  145. margin: 18rpx 0;
  146. background: #FFFFFF;
  147. border-radius: 20rpx;
  148. padding: 0 20rpx;
  149. .tabs {
  150. padding: 24rpx 0;
  151. .tabs_item {
  152. font-size: 30rpx;
  153. font-family: PingFangSC, PingFang SC;
  154. font-weight: 400;
  155. color: #444444;
  156. margin: 0 56rpx;
  157. }
  158. .tab_active {
  159. font-size: 30rpx;
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 600;
  162. color: #141414;
  163. position: relative;
  164. }
  165. .tab_active::before {
  166. content: '';
  167. position: absolute;
  168. width: 44rpx;
  169. height: 8rpx;
  170. background: linear-gradient(270deg, #0C66C2 0%, #FFFFFF 100%);
  171. border-radius: 4rpx;
  172. bottom: 0;
  173. right: 0;
  174. opacity: 0.6;
  175. }
  176. }
  177. .table {
  178. .head {
  179. background: #F3F3F3;
  180. border-radius: 12rpx;
  181. padding: 16rpx 0;
  182. .text {
  183. font-size: 26rpx;
  184. font-family: PingFangTC, PingFangTC;
  185. font-weight: 400;
  186. color: #222222;
  187. text-align: center;
  188. }
  189. }
  190. .item {
  191. padding: 32rpx 0;
  192. border-bottom: 1px solid #F4F5F9;
  193. .text {
  194. font-size: 26rpx;
  195. font-family: PingFangTC, PingFangTC;
  196. font-weight: 400;
  197. color: #222222;
  198. word-wrap: break-word;
  199. }
  200. }
  201. .avatar {
  202. width: 60rpx;
  203. height: 60rpx;
  204. border-radius: 50%;
  205. }
  206. }
  207. }
  208. .popu {
  209. padding: 0 32rpx;
  210. .title {
  211. font-size: 36rpx;
  212. font-family: PingFangSC, PingFang SC;
  213. font-weight: 500;
  214. color: #222222;
  215. text-align: center;
  216. padding: 40rpx 0 28rpx;
  217. }
  218. .content {
  219. font-size: 26rpx;
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 400;
  222. color: #444444;
  223. }
  224. .btn {
  225. margin: 58rpx 0;
  226. width: 686rpx;
  227. height: 92rpx;
  228. background: #0C66C2;
  229. border-radius: 20rpx;
  230. font-size: 36rpx;
  231. font-family: PingFangSC, PingFang SC;
  232. font-weight: 500;
  233. color: #FFFFFF;
  234. line-height: 92rpx;
  235. }
  236. }
  237. }
  238. </style>