insurance.vue 4.5 KB

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