review.vue 5.9 KB

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