list.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <template>
  2. <view class="app-container">
  3. <custom :bgColor="'bg-them'" :backColor="'#FFFFFF'" :isBack="true" v-show="isCustom">
  4. <text slot="content" style="color: #FFFFFF; font-size: 36rpx;">收益排行榜</text>
  5. </custom>
  6. <view class="menu-container" :style="cuStyle">
  7. <image @tap="toBack" src="@/static/icon/back.png"></image>
  8. </view>
  9. <view class="top-container">
  10. <image src="@/static/mine/ranking/bg.png" mode="widthFix" class="bg"></image>
  11. <view class="content">
  12. <view class="list">
  13. <block v-for="(item, index) in top_ranking" :key='index'>
  14. <view class="item" :class="'no_' + item.ranking">
  15. <view class="top">
  16. <block v-if="!item.nodata">
  17. <image :src="item.avatar" class="head" v-if="item.avatar.indexOf('http') >= 0"></image>
  18. <image :src="imageUrl + item.avatar" class="head" v-else></image>
  19. </block>
  20. <image :src="configInfo.minLogo3" class="head" v-else></image>
  21. <image :src="'/static/mine/ranking/No_' + item.ranking + '.png'" class="rank"></image>
  22. </view>
  23. <block v-if="!item.nodata">
  24. <view class="money">¥{{item.total}}</view>
  25. <view class="name">{{item.workUserName}}</view>
  26. <view class="text">{{item.websitName}}</view>
  27. </block>
  28. <block v-if="item.nodata">
  29. <view class="nodata">{{item.nodata}}</view>
  30. </block>
  31. </view>
  32. </block>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="list-container">
  37. <view class="mine">
  38. <view class="left">
  39. <view class="rank">
  40. <view class="row1" :class="mine_ranking.ranking ? 'big':''">{{mine_ranking.ranking || '未入榜'}}</view>
  41. <view class="row2">我的排名</view>
  42. </view>
  43. <block v-if="mine_ranking.avatar">
  44. <image :src="mine_ranking.avatar" v-if="mine_ranking.avatar.indexOf('http') >= 0"></image>
  45. <image :src="imageUrl + mine_ranking.avatar" v-else></image>
  46. </block>
  47. <view class="info">
  48. <view class="name">{{mine_ranking.workUserName}}</view>
  49. <view class="text ellipsis-2">{{mine_ranking.websitName || ''}}</view>
  50. </view>
  51. </view>
  52. <view class="right">
  53. <view class="money">{{mine_ranking.total | numToFixed}}</view>
  54. <view class="report" @tap="toMyReport">查看我的月报></view>
  55. </view>
  56. </view>
  57. <view class="list" v-if="bottom_ranking && bottom_ranking.length > 0">
  58. <block v-for="(item, index) in bottom_ranking" :key='index'>
  59. <view class="item">
  60. <view class="rank">{{index+4}}</view>
  61. <block v-if="item.avatar">
  62. <image :src="item.avatar" v-if="item.avatar.indexOf('http') >= 0"></image>
  63. <image :src="imageUrl + item.avatar" v-else></image>
  64. </block>
  65. <view class="main">
  66. <view class="top">
  67. <view class="name">{{item.workUserName}}</view>
  68. <view class="money">{{item.total | numToFixed}}</view>
  69. </view>
  70. <view class="text ellipsis">{{item.websitName}}</view>
  71. </view>
  72. </view>
  73. </block>
  74. </view>
  75. </view>
  76. <view class="bottom-container" v-if="statisticalDate.start">统计时间:{{statisticalDate.start}} 至 {{statisticalDate.end}}</view>
  77. </view>
  78. </template>
  79. <script>
  80. export default {
  81. data() {
  82. return {
  83. imageUrl: this.$imageUrl,
  84. configInfo: uni.getStorageSync('configInfo'),
  85. scrollTop: 0, // 滚动高度(用于控制自定义导航)
  86. isCustom: false, // 是否显示自定义导航
  87. top_ranking: [],
  88. bottom_ranking: [],
  89. mine_ranking: {},
  90. statisticalDate: {},
  91. }
  92. },
  93. watch: {
  94. scrollTop() {
  95. if(this.scrollTop > 100) {
  96. this.isCustom = true;
  97. }else {
  98. this.isCustom = false;
  99. }
  100. }
  101. },
  102. computed:{
  103. cuStyle(){
  104. return `height:${this.CustomBar-this.StatusBar}px;padding-top:${this.StatusBar}px;`
  105. }
  106. },
  107. onPageScroll(res) {
  108. this.scrollTop = res.scrollTop;
  109. },
  110. onLoad() {
  111. this.getData();
  112. },
  113. methods: {
  114. // 获取数据
  115. getData() {
  116. this.$axios({
  117. url: '/user/rank',
  118. method: 'get',
  119. params: {},
  120. isLoading: 1
  121. }).then(res => {
  122. let rankList = res.data.rankList || [];
  123. let top_ranking = rankList.slice(0, 3);
  124. for (let i = 0; i < 3; i++) {
  125. if(!top_ranking[i]) {
  126. top_ranking.push({nodata: '虚位以待', ranking: i+1});
  127. }
  128. }
  129. let bottom_ranking = rankList;
  130. bottom_ranking.splice(0, 3);
  131. this.top_ranking = top_ranking;
  132. this.bottom_ranking = bottom_ranking;
  133. this.mine_ranking = res.data.myRank;
  134. this.statisticalDate = {
  135. start: res.data.startPeriod,
  136. end: res.data.endPeriod,
  137. };
  138. })
  139. },
  140. // 去我的月报
  141. toMyReport() {
  142. uni.navigateTo({
  143. url: '/pages/mine/ranking/report'
  144. })
  145. },
  146. toBack() {
  147. uni.navigateBack({
  148. delta: 1
  149. })
  150. }
  151. }
  152. }
  153. </script>
  154. <style lang="scss">
  155. .app-container {
  156. background: #ffffff;
  157. box-sizing: border-box;
  158. }
  159. .menu-container {
  160. position: fixed;
  161. top: 0;
  162. z-index: 999;
  163. width: 100%;
  164. display: flex;
  165. align-items: center;
  166. image {
  167. width: 32rpx;
  168. height: 32rpx;
  169. display: block;
  170. margin-left: 30rpx;
  171. }
  172. }
  173. .top-container {
  174. position: relative;
  175. height: 900rpx;
  176. .bg {
  177. display: block;
  178. width: 750rpx;
  179. height: 900rpx;
  180. position: absolute;
  181. top: 0;
  182. z-index: 0;
  183. }
  184. .content {
  185. position: relative;
  186. z-index: 1;
  187. .list {
  188. display: flex;
  189. padding-top: 350rpx;
  190. .item {
  191. display: flex;
  192. flex-direction: column;
  193. align-items: center;
  194. width: 33.33%;
  195. padding: 0 20rpx;
  196. box-sizing: border-box;
  197. .top {
  198. position: relative;
  199. .head {
  200. border-radius: 50%;
  201. display: block;
  202. }
  203. .rank {
  204. position: absolute;
  205. display: block;
  206. }
  207. }
  208. .nodata {
  209. font-size: 28rpx;
  210. color: #FFFFFF;
  211. line-height: 32rpx;
  212. margin-top: 16rpx;
  213. }
  214. .money {
  215. font-size: 32rpx;
  216. color: #FFFFFF;
  217. line-height: 32rpx;
  218. margin-top: 16rpx;
  219. }
  220. .name {
  221. font-size: 32rpx;
  222. color: #FFFFFF;
  223. line-height: 32rpx;
  224. margin-top: 16rpx;
  225. }
  226. .text {
  227. font-size: 24rpx;
  228. color: #FFFFFF;
  229. line-height: 28rpx;
  230. text-align: center;
  231. margin-top: 10rpx;
  232. opacity: .6;
  233. }
  234. }
  235. .item.no_1 {
  236. order: 2;
  237. .head {
  238. width: 160rpx;
  239. height: 160rpx;
  240. border: 2px solid #FFB103;
  241. }
  242. .rank {
  243. width: 80rpx;
  244. height: 58rpx;
  245. top: -50rpx;
  246. left: 50%;
  247. margin-left: -40rpx;
  248. }
  249. }
  250. .item.no_2 {
  251. order: 1;
  252. margin-top: 100rpx;
  253. .head {
  254. width: 140rpx;
  255. height: 140rpx;
  256. border: 2px solid #CCCCCC;
  257. }
  258. .rank {
  259. width: 72rpx;
  260. height: 52rpx;
  261. top: -44rpx;
  262. left: 50%;
  263. margin-left: -36rpx;
  264. }
  265. }
  266. .item.no_3 {
  267. order: 3;
  268. margin-top: 140rpx;
  269. .head {
  270. width: 140rpx;
  271. height: 140rpx;
  272. border: 2px solid #F59234;
  273. }
  274. .rank {
  275. width: 72rpx;
  276. height: 52rpx;
  277. top: -44rpx;
  278. left: 50%;
  279. margin-left: -36rpx;
  280. }
  281. }
  282. }
  283. }
  284. }
  285. .list-container {
  286. padding: 0 20rpx;
  287. margin-top: -40rpx;
  288. position: relative;
  289. z-index: 2;
  290. .mine {
  291. border-radius: 10rpx;
  292. padding: 25rpx 20rpx;
  293. display: flex;
  294. justify-content: space-between;
  295. box-shadow: 0 0 6px 0 rgba(84,84,84,0.23);
  296. background: #FFFFFF;
  297. .left {
  298. display: flex;
  299. align-items: center;
  300. .rank {
  301. flex-shrink: 0;
  302. text-align: center;
  303. .row1 {
  304. font-size: 24rpx;
  305. color: #FE781F;
  306. line-height: 24rpx;
  307. font-weight: 500;
  308. &.big {
  309. font-size: 32rpx;
  310. }
  311. }
  312. .row2 {
  313. font-size: 22rpx;
  314. color: #666666;
  315. line-height: 24rpx;
  316. margin-top: 10rpx;
  317. }
  318. }
  319. image {
  320. width: 100rpx;
  321. height: 100rpx;
  322. display: block;
  323. border-radius: 50%;
  324. flex-shrink: 0;
  325. margin-left: 10rpx;
  326. }
  327. .info {
  328. display: flex;
  329. flex-direction: column;
  330. justify-content: space-between;
  331. margin-left: 20rpx;
  332. height: 100rpx;
  333. .name {
  334. font-size: 28rpx;
  335. color: #333333;
  336. line-height: 32rpx;
  337. }
  338. .text {
  339. font-size: 24rpx;
  340. color: #666666;
  341. line-height: 28rpx;
  342. }
  343. }
  344. }
  345. .right {
  346. flex-shrink: 0;
  347. text-align: right;
  348. display: flex;
  349. flex-direction: column;
  350. justify-content: space-between;
  351. margin-left: 40rpx;
  352. .money {
  353. font-size: 32rpx;
  354. color: #FE781F;
  355. line-height: 32rpx;
  356. font-weight: 500;
  357. }
  358. .report {
  359. font-size: 24rpx;
  360. color: #3F9EFF;
  361. line-height: 28rpx;
  362. }
  363. }
  364. }
  365. .list {
  366. margin-top: 20rpx;
  367. .item {
  368. border-bottom: 1px solid #eaeaea;
  369. display: flex;
  370. align-items: center;
  371. padding: 12rpx 0;
  372. .rank {
  373. width: 90rpx;
  374. text-align: center;
  375. font-size: 36rpx;
  376. font-weight: 500;
  377. flex-shrink: 0;
  378. }
  379. image {
  380. width: 100rpx;
  381. height: 100rpx;
  382. display: block;
  383. border-radius: 50%;
  384. flex-shrink: 0;
  385. margin-left: 10rpx;
  386. }
  387. .main {
  388. margin-left: 20rpx;
  389. width: 100%;
  390. height: 80rpx;
  391. display: flex;
  392. flex-direction: column;
  393. justify-content: space-between;
  394. .top {
  395. display: flex;
  396. justify-content: space-between;
  397. align-items: center;
  398. .name {
  399. font-size: 28rpx;
  400. color: #333333;
  401. line-height: 32rpx;
  402. }
  403. .money {
  404. font-size: 32rpx;
  405. color: #FE781F;
  406. line-height: 32rpx;
  407. font-weight: 500;
  408. }
  409. }
  410. .text {
  411. font-size: 24rpx;
  412. color: #666666;
  413. line-height: 28rpx;
  414. width: 490rpx;
  415. }
  416. }
  417. }
  418. }
  419. }
  420. .bottom-container {
  421. text-align: center;
  422. font-size: 24rpx;
  423. line-height: 28rpx;
  424. color: #999999;
  425. padding-top: 30rpx;
  426. padding-bottom: 60rpx;
  427. }
  428. </style>