service.vue 3.5 KB

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