nursingquality.vue 3.8 KB

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