invite-list.vue 5.5 KB

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