managementhospital.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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 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: 4,
  52. current: 1,
  53. pagesize: 10,
  54. // 总共有多少条数据
  55. total: 0,
  56. doctorSystem: []
  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/${4}?&current=${this.current}&size=${this.pagesize}`);
  69. if (response.data.code === 1) {
  70. this.doctorSystem = response.data.responseData.records;
  71. this.total = response.data.responseData.total;
  72. console.log(this.doctorSystem)
  73. // console.log(response.data.responseData)
  74. }
  75. },
  76. //跳转
  77. Jump(id){
  78. window.open('/newsDetails/'+ id);
  79. },
  80. // 分页方法
  81. handleSizeChange(val) {
  82. this.pagesize = val;
  83. this.loadData();
  84. console.log(`每页 ${val} 条`);
  85. },
  86. handleCurrentChange(val) {
  87. this.current = val;
  88. this.loadData();
  89. console.log(`当前页: ${val}`);
  90. },
  91. }
  92. };
  93. </script>
  94. <style type="text/css">
  95. .managementhospital {
  96. }
  97. .managementhospital .sharonPic {
  98. overflow: hidden;
  99. margin-top: 20px;
  100. height: 300px;
  101. }
  102. .managementhospital .sharonPic img {
  103. height: 100%;
  104. width: 100%;
  105. }
  106. .managementhospital .sharoncont {
  107. position: relative;
  108. }
  109. .managementhospital .sharoncont .icon {
  110. position: absolute;
  111. left: -11px;
  112. top: 13px;
  113. }
  114. .managementhospital .shaIcon {
  115. position: relative;
  116. border: 1px solid #cccccc;
  117. height: 120px;
  118. line-height: 120px;
  119. margin-top: 20px;
  120. text-align: center;
  121. }
  122. .managementhospital .shamatter {
  123. border: 1px solid #cccccc;
  124. margin-top: 20px;
  125. }
  126. .managementhospital .shamatter .shuIcon {
  127. width: 4px;
  128. background-color: #79c71e;
  129. height: 15px;
  130. margin-top: 10px;
  131. margin-left: 8px;
  132. }
  133. .managementhospital .shamatter .hengIcon {
  134. width: 100%;
  135. background-color: #79c71e;
  136. height: 4px;
  137. margin-top: 10px;
  138. }
  139. .managementhospital .shamatter li {
  140. overflow: hidden;
  141. margin-top: 15px;
  142. border-top: 1px solid #ccc;
  143. border-bottom: 1px solid #ccc;
  144. cursor:pointer;
  145. }
  146. .managementhospital .shamatter li .pic {
  147. overflow: hidden;
  148. width: 100px;
  149. height: 80px;
  150. margin-left: 10px;
  151. }
  152. .managementhospital .shamatter li .pic img{
  153. width: 100%;
  154. height: 100%;
  155. }
  156. .managementhospital .shamatter li .newcont {
  157. overflow: hidden;
  158. padding-left: 10px;
  159. }
  160. .managementhospital .shamatter li .newcont h5{
  161. font-size: 16px;
  162. padding-top: 5px;
  163. }
  164. .managementhospital .shamatter li .newcont p{
  165. font-size: 12px;
  166. padding-top: 5px;
  167. }
  168. .managementhospital .shamatter .block {
  169. text-align: center;
  170. margin-top: 20px;
  171. margin-bottom: 20px;
  172. }
  173. </style>