RankList.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <div class="rank">
  3. <h4 class="title">{{ title }}</h4>
  4. <ul class="list">
  5. <li :key="index" v-for="(item, index) in list">
  6. <span :class="index < 3 ? 'active' : null">{{ index + 1 }}</span>
  7. <span>{{ item.name }}</span>
  8. <span>{{ item.total }}</span>
  9. </li>
  10. </ul>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'RankList',
  16. // ['title', 'list']
  17. props: {
  18. title: {
  19. type: String,
  20. default: ''
  21. },
  22. list: {
  23. type: Array,
  24. default: null
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .rank {
  31. padding: 0 32px 32px 72px;
  32. .list {
  33. margin: 25px 0 0;
  34. padding: 0;
  35. list-style: none;
  36. li {
  37. margin-top: 16px;
  38. span {
  39. color: rgba(0, 0, 0, .65);
  40. font-size: 14px;
  41. line-height: 22px;
  42. &:first-child {
  43. background-color: #f5f5f5;
  44. border-radius: 20px;
  45. display: inline-block;
  46. font-size: 12px;
  47. font-weight: 600;
  48. margin-right: 24px;
  49. height: 20px;
  50. line-height: 20px;
  51. width: 20px;
  52. text-align: center;
  53. }
  54. &.active {
  55. background-color: #314659;
  56. color: #fff;
  57. }
  58. &:last-child {
  59. float: right;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. .mobile .rank {
  66. padding: 0 32px 32px 32px;
  67. }
  68. </style>