experts.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <div class="experts">
  3. <header-nav :id="id"/>
  4. <div class="w sharonPic">
  5. <img src="../assets/image/shalong.jpg">
  6. </div>
  7. <!-- 沙龙内容部分 -->
  8. <div class="w sharoncont">
  9. <div class="wthree shaIcon">
  10. 专家风采
  11. </div>
  12. <img src="../assets/image/sl.png" class="icon">
  13. <div class="wseven shamatter">
  14. <div class="shuIcon"></div>
  15. <div class="hengIcon"></div>
  16. <ul >
  17. <li v-for="(item, index) in expertsContent" :key="id" @click="Jump(item.id)">
  18. <div class="newcont">
  19. <div style="overflow: hidden;">
  20. <span class="round left"></span>
  21. <h5 class="left" style="margin-left: 15px;">{{item.title}}</h5>
  22. <span class="onlyTime">{{item.publishTime}}</span>
  23. </div>
  24. <div class="onlyHeight">
  25. <p>{{item.newsAbstract}}</p>
  26. </div>
  27. </div>
  28. </li>
  29. </ul>
  30. <!-- 分页 -->
  31. <div class="block">
  32. <el-pagination
  33. @size-change="handleSizeChange"
  34. @current-change="handleCurrentChange"
  35. :current-page="current"
  36. :page-size="pagesize"
  37. background
  38. layout="prev, pager, next"
  39. :total="total">
  40. </el-pagination>
  41. </div>
  42. </div>
  43. </div>
  44. <footer-nav/>
  45. </div>
  46. </template>
  47. <script type="text/javascript">
  48. import headerNav from '@/components/header';
  49. import footerNav from '@/components/footer';
  50. export default {
  51. data() {
  52. return {
  53. id: 6,
  54. current: 1,
  55. pagesize: 10,
  56. // 总共有多少条数据
  57. total: 0,
  58. expertsContent: []
  59. };
  60. },
  61. components: {
  62. headerNav,
  63. footerNav
  64. },
  65. created() {
  66. this.loadData();
  67. },
  68. methods: {
  69. async loadData() {
  70. const response = await this.$http.get(`biz/newsArticles/${6}?&current=${this.current}&size=${this.pagesize}`);
  71. if (response.data.code === 1) {
  72. this.expertsContent = response.data.responseData.records;
  73. this.total = response.data.responseData.total;
  74. // console.log(response.data.responseData)
  75. }
  76. },
  77. //跳转
  78. Jump(id){
  79. window.open('/newsDetails/'+ id);
  80. },
  81. // 分页方法
  82. handleSizeChange(val) {
  83. this.pagesize = val;
  84. this.loadData();
  85. console.log(`每页 ${val} 条`);
  86. },
  87. handleCurrentChange(val) {
  88. this.current = val;
  89. this.loadData();
  90. console.log(`当前页: ${val}`);
  91. },
  92. }
  93. };
  94. </script>
  95. <style type="text/css">
  96. .experts {
  97. }
  98. .experts .sharonPic {
  99. overflow: hidden;
  100. margin-top: 20px;
  101. height: 300px;
  102. }
  103. .experts .sharonPic img {
  104. height: 100%;
  105. width: 100%;
  106. }
  107. .experts .sharoncont {
  108. position: relative;
  109. }
  110. .experts .sharoncont .icon {
  111. position: absolute;
  112. left: -11px;
  113. top: 13px;
  114. }
  115. .experts .shaIcon {
  116. position: relative;
  117. border: 1px solid #cccccc;
  118. height: 120px;
  119. line-height: 120px;
  120. margin-top: 20px;
  121. text-align: center;
  122. }
  123. .experts .shamatter {
  124. border: 1px solid #cccccc;
  125. margin-top: 20px;
  126. }
  127. .experts .shamatter .shuIcon {
  128. width: 4px;
  129. background-color: #79c71e;
  130. height: 15px;
  131. margin-top: 10px;
  132. margin-left: 8px;
  133. }
  134. .experts .shamatter .hengIcon {
  135. width: 100%;
  136. background-color: #79c71e;
  137. height: 4px;
  138. margin-top: 10px;
  139. }
  140. .experts .shamatter li {
  141. overflow: hidden;
  142. margin-top: 15px;
  143. cursor:pointer;
  144. }
  145. .experts .shamatter li .pic {
  146. overflow: hidden;
  147. width: 100px;
  148. height: 80px;
  149. margin-left: 10px;
  150. }
  151. .experts .shamatter li .pic img{
  152. width: 100%;
  153. height: 100%;
  154. }
  155. .experts .shamatter li .newcont {
  156. overflow: hidden;
  157. padding-left: 10px;
  158. }
  159. .experts .shamatter li .newcont h5{
  160. font-size: 14px;
  161. padding-top: 5px;
  162. }
  163. .experts .shamatter .block {
  164. text-align: center;
  165. margin-top: 20px;
  166. margin-bottom: 20px;
  167. }
  168. </style>