detailBlock.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="detailBlock">
  3. <view class="tit" v-if="!item.isShow">教研室详情</view>
  4. <view class="tit" v-else>活动详情</view>
  5. <view class="cont">
  6. 会议时间:<text>10月7日上午八点(周日)</text>
  7. </view>
  8. <view class="cont">
  9. 活动形式:<text style="color: #0056a8;">线上直播</text>
  10. </view>
  11. <view class="cont">
  12. <view id="myElement" class="activeTit">
  13. 教研室概况:查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多
  14. </view>
  15. <text class="zdwz" style="color: #0056a8;float: right;" @click="zdwz">收起</text>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. name:"detailBlock",
  22. props:{
  23. item:{
  24. type:Object,
  25. default (){
  26. return{
  27. isshow:0 //0教研室 1 活动
  28. }
  29. }
  30. }
  31. },
  32. data() {
  33. return {
  34. };
  35. },
  36. methods:{
  37. zdwz(){
  38. const query = wx.createSelectorQuery();
  39. query.select('#myElement').fields({ computedStyle: ['lineClamp'] }).exec((res) => {
  40. const element = res[0];
  41. element.style.webkitLineClamp = '4'; // 修改行数限制为 2
  42. });
  43. }
  44. }
  45. }
  46. </script>
  47. <style lang="scss">
  48. .detailBlock{
  49. background-color: #ffffff;
  50. border-radius: 10rpx;
  51. padding: 15px 10px;
  52. .tit{
  53. font-weight: bold;
  54. margin-bottom: 10px;
  55. }
  56. .cont{
  57. color: #999999;
  58. margin-bottom: 10px;
  59. .content {
  60. // .zdwz{
  61. // position: absolute;
  62. // right: 0;
  63. // bottom: 0;
  64. // }
  65. }
  66. .activeTit{
  67. display: -webkit-box;
  68. word-break: break-all;
  69. text-overflow: ellipsis;
  70. overflow: hidden;
  71. -webkit-box-orient: vertical;
  72. -webkit-line-clamp:2;/*设置 需要显示的行数*/
  73. }
  74. }
  75. }
  76. </style>