managementhospital.vue 3.9 KB

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