industry.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <template>
  2. <div class="industry">
  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="news">医政新闻</a>
  13. </div>
  14. <div style="margin-top: 5px; margin-left: 36%;">
  15. <a href="industry" style="font-size: 12px;">医政行业动态</a>
  16. </div>
  17. <div style="margin-top: 5px; margin-left: 36%;">
  18. <a href="sharon" style="font-size: 12px;">医政沙龙风采</a>
  19. </div>
  20. <div style="margin-top: 5px; margin-left: 36%;">
  21. <a href="invitation" 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: 3,
  68. current: 1,
  69. pagesize: 10,
  70. routingName: '',
  71. // 总共有多少条数据
  72. total: 0,
  73. DataList: []
  74. };
  75. },
  76. components: {
  77. headerNav,
  78. footerNav
  79. },
  80. created() {
  81. this.loadData();
  82. this.getUrlsub();
  83. },
  84. methods: {
  85. async loadData() {
  86. const response = await this.$http.get(`biz/newsArticles/${11}?&current=${this.current}&size=${this.pagesize}`);
  87. if (response.data.code === 1) {
  88. this.DataList = response.data.responseData.records;
  89. this.total = response.data.responseData.total;
  90. // console.log(response.data.responseData)
  91. }
  92. },
  93. Jump(id){
  94. window.open('/newsDetails/'+ id);
  95. },
  96. // 分页方法
  97. handleSizeChange(val) {
  98. this.pagesize = val;
  99. this.loadData();
  100. console.log(`每页 ${val} 条`);
  101. },
  102. handleCurrentChange(val) {
  103. this.current = val;
  104. this.loadData();
  105. console.log(`当前页: ${val}`);
  106. },
  107. getUrlsub() {
  108. var urlStr = location.pathname;
  109. var index = urlStr.lastIndexOf('\/');
  110. this.routingName = urlStr.substring(index + 1, urlStr.length);
  111. if(this.routingName == 'industry') {
  112. sessionStorage.setItem('breadName', '医政行业动态');
  113. sessionStorage.setItem('breadRouting', 'industry');
  114. }
  115. }
  116. }
  117. };
  118. </script>
  119. <style type="text/css">
  120. .industry {
  121. }
  122. .industry .sharonPic {
  123. overflow: hidden;
  124. margin-top: 20px;
  125. height: 300px;
  126. }
  127. .industry .sharonPic img {
  128. height: 100%;
  129. width: 100%;
  130. }
  131. .industry .sharoncont {
  132. position: relative;
  133. }
  134. .industry .sharoncont .icon {
  135. position: absolute;
  136. left: -11px;
  137. top: 13px;
  138. }
  139. .industry .shaIcon {
  140. position: relative;
  141. border: 1px solid #cccccc;
  142. height: 170px;
  143. margin-top: 20px;
  144. }
  145. .industry .shaIcon a {
  146. cursor:pointer;
  147. color: #333333;
  148. }
  149. .industry .shamatter {
  150. position: relative;
  151. border: 1px solid #cccccc;
  152. margin-top: 20px;
  153. }
  154. .industry .shamatter .shuIcon {
  155. width: 4px;
  156. background-color: #14A24B;
  157. height: 15px;
  158. margin-top: 10px;
  159. margin-left: 8px;
  160. }
  161. .industry .shamatter .hengIcon {
  162. width: 100%;
  163. background-color: #14A24B;
  164. height: 4px;
  165. margin-top: 10px;
  166. }
  167. .industry .shamatter li {
  168. overflow: hidden;
  169. margin-top: 15px;
  170. cursor:pointer;
  171. }
  172. .industry .shamatter li .pic {
  173. overflow: hidden;
  174. width: 100px;
  175. height: 80px;
  176. margin-left: 10px;
  177. }
  178. .industry .shamatter li .pic img{
  179. width: 100%;
  180. height: 100%;
  181. }
  182. .industry .shamatter li .newcont {
  183. overflow: hidden;
  184. padding-left: 10px;
  185. }
  186. .industry .shamatter li .newcont h5{
  187. font-size: 14px;
  188. padding-top: 5px;
  189. }
  190. .industry .shamatter .block {
  191. text-align: center;
  192. margin-top: 20px;
  193. margin-bottom: 20px;
  194. }
  195. </style>