invite-list.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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. commissionData
  51. } from "@/units/inquire.js"
  52. export default {
  53. data() {
  54. return {
  55. page: 1,
  56. total: 0,
  57. list: [],
  58. sum: '',
  59. tabs: [{
  60. id: '1',
  61. name: '我的邀请人'
  62. },
  63. {
  64. id: '2',
  65. name: '上级邀请人'
  66. }
  67. ],
  68. tab_active: 0,
  69. content: '',
  70. show: false
  71. }
  72. },
  73. onLoad(options) {
  74. // console.log(options.momey);
  75. // this.sum = Number(options.money).toFixed(1)
  76. this.getlist()
  77. this.getconfig()
  78. this.commissionData()
  79. },
  80. onReachBottom() {
  81. if (this.total != this.list.length) {
  82. this.page++
  83. this.getlist()
  84. }
  85. },
  86. methods: {
  87. getlist() {
  88. invite_list({
  89. page: this.page
  90. }).then((res) => {
  91. this.list = this.list.concat(res.data.data)
  92. this.total = res.data.total
  93. })
  94. },
  95. getdata() {
  96. parent_info().then((res) => {
  97. this.list = []
  98. this.list.push(res.data)
  99. })
  100. },
  101. commissionData() {
  102. commissionData().then((res) => {
  103. this.sum = Number(res.data.invite).toFixed(1)
  104. })
  105. },
  106. getconfig() {
  107. get_agreement_detail({
  108. code: 'commission_balance'
  109. }).then((res) => {
  110. this.content = res.data.content
  111. })
  112. },
  113. changetab(index) {
  114. this.tab_active = index
  115. if (index == '0') {
  116. this.page = 1
  117. this.getlist()
  118. } else {
  119. this.getdata()
  120. }
  121. }
  122. }
  123. }
  124. </script>
  125. <style lang="scss">
  126. .web_box {
  127. padding: 18rpx 30rpx;
  128. .top {
  129. background: url('/pagesD/static/images/invite-bg.png') no-repeat;
  130. background-size: 100%;
  131. padding: 50rpx;
  132. .top_item {
  133. width: 50%;
  134. .num {
  135. font-size: 36rpx;
  136. font-family: JDZhengHT, JDZhengHT;
  137. font-weight: 400;
  138. color: #FFFFFF;
  139. padding: 0 0 28rpx;
  140. }
  141. .text {
  142. font-size: 24rpx;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 400;
  145. color: #FFFFFF;
  146. }
  147. }
  148. .top_item:nth-child(1) {
  149. border-right: 1rpx solid rgba(255, 255, 255, .2);
  150. }
  151. }
  152. .list {
  153. margin: 18rpx 0;
  154. background: #FFFFFF;
  155. border-radius: 20rpx;
  156. padding: 0 20rpx;
  157. .tabs {
  158. padding: 24rpx 0;
  159. .tabs_item {
  160. font-size: 30rpx;
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 400;
  163. color: #444444;
  164. margin: 0 56rpx;
  165. }
  166. .tab_active {
  167. font-size: 30rpx;
  168. font-family: PingFangSC, PingFang SC;
  169. font-weight: 600;
  170. color: #141414;
  171. position: relative;
  172. }
  173. .tab_active::before {
  174. content: '';
  175. position: absolute;
  176. width: 44rpx;
  177. height: 8rpx;
  178. background: linear-gradient(270deg, #0C66C2 0%, #FFFFFF 100%);
  179. border-radius: 4rpx;
  180. bottom: 0;
  181. right: 0;
  182. opacity: 0.6;
  183. }
  184. }
  185. .table {
  186. .head {
  187. background: #F3F3F3;
  188. border-radius: 12rpx;
  189. padding: 16rpx 0;
  190. .text {
  191. font-size: 26rpx;
  192. font-family: PingFangTC, PingFangTC;
  193. font-weight: 400;
  194. color: #222222;
  195. text-align: center;
  196. }
  197. }
  198. .item {
  199. padding: 32rpx 0;
  200. border-bottom: 1px solid #F4F5F9;
  201. .text {
  202. font-size: 26rpx;
  203. font-family: PingFangTC, PingFangTC;
  204. font-weight: 400;
  205. color: #222222;
  206. word-wrap: break-word;
  207. }
  208. }
  209. .avatar {
  210. width: 60rpx;
  211. height: 60rpx;
  212. border-radius: 50%;
  213. }
  214. }
  215. }
  216. .popu {
  217. padding: 0 32rpx;
  218. .title {
  219. font-size: 36rpx;
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 500;
  222. color: #222222;
  223. text-align: center;
  224. padding: 40rpx 0 28rpx;
  225. }
  226. .content {
  227. font-size: 26rpx;
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 400;
  230. color: #444444;
  231. }
  232. .btn {
  233. margin: 58rpx 0;
  234. width: 686rpx;
  235. height: 92rpx;
  236. background: #0C66C2;
  237. border-radius: 20rpx;
  238. font-size: 36rpx;
  239. font-family: PingFangSC, PingFang SC;
  240. font-weight: 500;
  241. color: #FFFFFF;
  242. line-height: 92rpx;
  243. }
  244. }
  245. }
  246. </style>