nursing.vue 5.0 KB

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