hospital-introduction.vue 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <div class="wq3">
  3. <img src="static\images\u.png" style="width:5px;height:20px;">
  4. <div class="kefont"><span >医院介绍</span></div>
  5. <div class="more" @click="more()">查看更多</div>
  6. <div class="logo"><img src="static\images\u216.png"></div>
  7. <div class="content">
  8. <span v-html="hispitalform.introduction" id="content" class="yycontent"></span>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import { GetHospitalInfo } from '@/api/site/site'
  14. export default {
  15. name: "hospital-introduction",
  16. data(){
  17. return{
  18. hispitalform:{
  19. title:"",
  20. sort:"",
  21. introduction:"",
  22. },
  23. }
  24. },
  25. methods:{
  26. //获取医院介绍
  27. GetHospitalInfo(){
  28. GetHospitalInfo().then(response=>{
  29. if(response.data.state == 1){
  30. var hospital = response.data.data.hospital;
  31. this.hispitalform = response.data.data.hospital;
  32. // console.log("获取医院介绍数据",hospital);
  33. }
  34. })
  35. },
  36. },
  37. created(){
  38. this.GetHospitalInfo();
  39. },
  40. updated(){
  41. let obj = document.getElementById('content');
  42. console.log("obj是什么",obj)
  43. let imgs = obj.getElementsByTagName('img');
  44. console.log("imgs",imgs)
  45. for(let i=0;i<imgs.length;i++){
  46. imgs[i].style.width = '332px';
  47. imgs[i].style.height = '100px';
  48. }
  49. }
  50. }
  51. </script>
  52. <style scoped>
  53. .wq3{
  54. width: 320px;
  55. height: 230px;
  56. background-color: white;
  57. color: #ffffff;
  58. /* border: solid 1px black; */
  59. margin-bottom: 0px;
  60. }
  61. .kefont{
  62. font-size: 14px;
  63. color: red;
  64. margin-left: 8px;
  65. margin-top: -20px;
  66. }
  67. .more{
  68. position: absolute;
  69. font-size: 14px;
  70. color:black;
  71. margin-left: 220px;
  72. margin-top: -22px;
  73. }
  74. .logo{
  75. position: absolute;
  76. margin-left: 280px;
  77. margin-top: -22px;
  78. }
  79. .content{
  80. position: absolute;
  81. font-size: 14px;
  82. color: black;
  83. }
  84. .yycontent{
  85. overflow: hidden;
  86. text-overflow: ellipsis;
  87. display: -webkit-box;
  88. -webkit-line-clamp: 6;
  89. -webkit-box-orient: vertical
  90. }
  91. </style>