detailBlock.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="detailBlock">
  3. <view class="tit fwb-font" v-if="!item.isShow">教研室详情</view>
  4. <view class="tit fwb-font" v-else>活动详情</view>
  5. <view class="cont sZw-font">
  6. 会议时间:<text>10月7日上午八点(周日)</text>
  7. </view>
  8. <view class="cont sZw-font">
  9. 活动形式:<text style="color: #0056a8;">线上直播</text>
  10. </view>
  11. <view class="cont sZw-font">
  12. <!-- <view id="myElement" class="activeTit">
  13. 教研室概况:查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多
  14. </view>
  15. <text class="zdwz" style="color: #0056a8;float: right;" @click="zdwz">收起</text> -->
  16. <view class="content">
  17. <view ref="p" :class="getClassNames">
  18. <text style="color: #999999;">教研室概况:</text>
  19. {{item.info}}
  20. </view>
  21. <view ref="btnnn" :class="getClassNames1" @click="qqq">
  22. <!-- {{isAll ? '收起' : '展开'}} -->
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. name: "detailBlock",
  31. props: {
  32. item: {
  33. type: Object,
  34. default () {
  35. return {
  36. isshow: 0, //0教研室 1 活动
  37. info:''
  38. }
  39. }
  40. }
  41. },
  42. data() {
  43. return {
  44. isAll: false,
  45. meunButtonInfo:this.meunButtonInfo, //胶囊高度
  46. };
  47. },
  48. computed: {
  49. getClassNames() {
  50. return {
  51. 'p': !this.isAll,
  52. 'is-expanded': this.isAll
  53. };
  54. },
  55. getClassNames1() {
  56. return {
  57. 'btn-more': !this.isAll,
  58. 'is-zd': this.isAll
  59. };
  60. }
  61. },
  62. methods: {
  63. // zdwz(){
  64. // const query = wx.createSelectorQuery();
  65. // query.select('#myElement').fields({ computedStyle: ['lineClamp'] }).exec((res) => {
  66. // const element = res[0];
  67. // element.style.webkitLineClamp = '4'; // 修改行数限制为 2
  68. // });
  69. // },
  70. qqq() {
  71. console.log(111);
  72. this.isAll = !this.isAll
  73. }
  74. }
  75. }
  76. </script>
  77. <style lang="scss">
  78. .detailBlock {
  79. background-color: #ffffff;
  80. border-radius: 10rpx;
  81. padding: 30rpx;
  82. .tit {
  83. font-weight: 600;
  84. margin-bottom: 10px;
  85. }
  86. .cont {
  87. color: #999999;
  88. margin-bottom: 10px;
  89. text {
  90. color: #666666;
  91. }
  92. .content {
  93. white-space: normal;
  94. /*隐藏溢出*/
  95. /*当文本溢出包含元素时显示省略符号来代表被修剪的文本*/
  96. /*规定段落中的文本不进行换行*/
  97. letter-spacing: 2rpx;
  98. display: -webkit-box;
  99. word-break: break-all;
  100. text-overflow: ellipsis;
  101. overflow: hidden;
  102. -webkit-box-orient: vertical;
  103. -webkit-line-clamp: 4;
  104. }
  105. .content .p {
  106. width: 90%;
  107. color: #666666;
  108. // max-width: 100%;
  109. // display:inline-block;
  110. display: block;
  111. // float: left;
  112. overflow: hidden;
  113. text-overflow: ellipsis;
  114. white-space: nowrap;
  115. // padding-right: 50rpx;
  116. /*设置文字溢出时显示省略号*/
  117. }
  118. .content .p.is-expanded {
  119. width: 100%;
  120. overflow: visible;
  121. white-space: normal;
  122. /*文字溢出时不再显示省略号*/
  123. }
  124. .btn-more {
  125. float: right;
  126. display: inline-block;
  127. // width: 60px;
  128. transform: translate(0, -100%);
  129. color: #0056a8;
  130. }
  131. .btn-more.is-zd {
  132. transform: none;
  133. // transform: translate(0,0);
  134. }
  135. }
  136. }
  137. </style>