content.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <script setup>
  2. import { ref } from "vue"
  3. import IndexTitle from "~/components/IndexTitle/index.vue";
  4. import IndexNews from "~/components/IndexNews/index.vue";
  5. import IndexSection from "~/components/IndexSection/index.vue";
  6. import YXFooter from "~/components/layouts/Footer.vue";
  7. import TheCharts from "~/components/TheCharts/index.vue";
  8. // mock data.
  9. const chartsList = ref([
  10. {
  11. nickname: '爱思考的大毛',
  12. signature: '我这一生如履薄冰。。。',
  13. type: 'score'
  14. },
  15. {
  16. nickname: '爱思考的大毛',
  17. signature: '我这一生如履薄冰。。。',
  18. type: 'score'
  19. },
  20. {
  21. nickname: '爱思考的大毛',
  22. signature: '我这一生如履薄冰。。。',
  23. type: 'score'
  24. },
  25. {
  26. nickname: '爱思考的大毛',
  27. signature: '我这一生如履薄冰。。。',
  28. type: 'score'
  29. },
  30. {
  31. nickname: '爱思考的大毛',
  32. signature: '我这一生如履薄冰。。。',
  33. type: 'score'
  34. }
  35. ])
  36. </script>
  37. <template>
  38. <div class="index-container">
  39. <div class="banner">
  40. <el-carousel height="420px">
  41. <el-carousel-item v-for="item in 4" :key="item">
  42. <h3 class="small justify-center" text="2xl">{{ item }}</h3>
  43. </el-carousel-item>
  44. </el-carousel>
  45. </div>
  46. <IndexTitle title="精选咨询" />
  47. <div class="content-list flex-row flex-jc-sb">
  48. <template v-for="(item, idx) in 9" :key="idx">
  49. <IndexNews />
  50. </template>
  51. </div>
  52. <IndexTitle title="精选文章" />
  53. <div class="content-list content-list--c2 flex-row flex-jc-sb">
  54. <template v-for="(item, idx) in 9" :key="idx">
  55. <IndexSection :type="idx === 2 ? 'article' : 'common'" />
  56. </template>
  57. </div>
  58. <IndexTitle title="精选视频" />
  59. <div class="content-list content-list--c2 flex-row flex-jc-sb">
  60. <template v-for="(item, idx) in 9" :key="idx">
  61. <IndexSection />
  62. </template>
  63. </div>
  64. <IndexTitle title="大家在聊" />
  65. <div class="tags-container flex-row">
  66. <template v-for="(item, idx) in 9" :key="idx">
  67. <div class="tagbox">
  68. <span>
  69. 精选视频 {{ item }}
  70. </span>
  71. </div>
  72. </template>
  73. </div>
  74. <!-- 排行榜只有登录才有 -->
  75. <template v-if="true">
  76. <IndexTitle title="排行榜" />
  77. <div class="sortlist-container flex-row flex-jc-sb">
  78. <TheCharts :list="chartsList" type="score" header-title="积分排行" />
  79. <TheCharts :list="chartsList" type="essence" header-title="精华帖排行" />
  80. <TheCharts :list="chartsList" type="like" header-title="点赞排行" />
  81. </div>
  82. </template>
  83. <YXFooter />
  84. </div>
  85. </template>
  86. <style lang="scss" scoped>
  87. .index {
  88. &-container {
  89. .banner {
  90. margin-bottom: 30px;
  91. .demonstration {
  92. color: var(--el-text-color-secondary);
  93. }
  94. .el-carousel__item {
  95. border-radius: 6px;
  96. }
  97. .el-carousel__item h3 {
  98. color: #475669;
  99. opacity: 0.75;
  100. line-height: 420px;
  101. margin: 0;
  102. text-align: center;
  103. }
  104. .el-carousel__item:nth-child(2n) {
  105. background-color: #99a9bf;
  106. }
  107. .el-carousel__item:nth-child(2n + 1) {
  108. background-color: #d3dce6;
  109. }
  110. }
  111. .index-title-container {
  112. margin-bottom: 20px;
  113. }
  114. .content-list {
  115. margin-bottom: 30px;
  116. column-gap: 20px;
  117. flex-wrap: wrap;
  118. height: 255px;
  119. overflow: hidden;
  120. &--c2 {
  121. height: 337px;
  122. }
  123. }
  124. }
  125. }
  126. .tags {
  127. &-container {
  128. justify-content: flex-start;
  129. flex-wrap: wrap;
  130. padding: 30px 0 0;
  131. margin-bottom: 20px;
  132. height: 142px;
  133. overflow: hidden;
  134. .tagbox {
  135. width: 279px;
  136. height: 56px;
  137. text-align: center;
  138. line-height: 56px;
  139. background: #FFFFFF;
  140. border-radius: 6px;
  141. margin-right: 22px;
  142. margin-bottom: 16px;
  143. span::before {
  144. content: "#";
  145. }
  146. }
  147. }
  148. }
  149. .sortlist-container {
  150. column-gap: 26px;
  151. }
  152. </style>