当前位置:   article > 正文

vuejs数据超出单行显示更多,点击展开剩余数据_js 个数超了,显示更多

js 个数超了,显示更多

说下我在工作中遇到的这个需求

1:页面上的菜单选项,选项内容是后台接口返回的数据,现在的需求是当选项的内容超出一行,在这行的右面显示更多,点击更多,显示剩下的选项的内容

看下效果图

这是展开的效果图

下面先看下我的html部分代码

  1. <div :class="bussinessType?'show':'hidde'">
  2. <dl>
  3. <dt>业务类型:</dt>
  4. <dd ref="bussinessTypeRef">
  5. <a href="javascript:void(0)" name=""
  6. @click="getchildMenu($event)" class="active">全部</a>
  7. <a href="javascript:void(0)" :name="item.code" v-for="item in projectType"
  8. @click="getchildMenu($event)">{{item.name}}</a>
  9. </dd>
  10. <i class="unfold" @click="bussinessType = !bussinessType"
  11. v-show="bussinessHeight>40">
  12. {{ bussinessType ? '收起' : '更多'}}
  13. <Icon :type="bussinessType?'chevron-down':'chevron-up'" ></Icon>
  14. </i>
  15. </dl>
  16. </div>

说下原理show就是展开的时候使用的样式名称,hide是显示一行是使用的样式(主要就是控制容器高度)

.show{
        height: auto;
        border-bottom: 1px solid #ebebeb;
    }
    .hidde{
        height: 40px;
        overflow: hidden;
        border-bottom: 1px solid #ebebeb;
    }

这是我展示的菜单的部分,主要的思路是看这部分的高度是不是超出一行的高度,如果是超出一行的高度,则让dl外的div默认使用hide的样式

那么问题来了,怎么知道展示菜单的dd部分的高度超出一行了呢?

这就需要使用vuejs的watch来实现了

首先,watch监听ref是bussinessTypeRef的组件的高度(内容多的话自然dd容易会被撑高),这时候与一行的高度(我这里设置的是40)作比较,如果超出,就让更多的文字按钮显示出来。下面是监听dd内容高度的watch方法

  1. projectType: function () {
  2. this.$nextTick(function(){
  3. let cur = this.$refs['bussinessTypeRef'];
  4. if(cur){
  5. this.bussinessHeight = cur.clientHeight;
  6. }
  7. });
  8. },

这时候更多文字按钮显示,我们就控制dl外层的div容器,让该容器使用hide的样式,点击更多的时候,让控制显示更多的变量变为相反的值,这样让收起显示出来,更多消失,同时让外层的div容器使用show的样式。这样一来就实现了文字超出一行显示更多,点击收起的交互效果。

下面附上完整的代码供参考

  1. <div :class="bussinessType?'show':'hidde'">
  2. <dl>
  3. <dt>业务类型:</dt>
  4. <dd ref="bussinessTypeRef">
  5. <a href="javascript:void(0)" name=""
  6. @click="getchildMenu($event)" class="active">全部</a>
  7. <a href="javascript:void(0)" :name="item.code" v-for="item in projectType"
  8. @click="getchildMenu($event)">{{item.name}}</a>
  9. </dd>
  10. <i class="unfold" @click="bussinessType = !bussinessType"
  11. v-show="bussinessHeight>40">
  12. {{ bussinessType ? '收起' : '更多'}}
  13. <Icon :type="bussinessType?'chevron-down':'chevron-up'" ></Icon>
  14. </i>
  15. </dl>
  16. </div>
  17. // 行业
  18. businessType: function () {
  19. this.$nextTick(function(){
  20. let cur = this.$refs['industryRef'];
  21. if(cur){
  22. this.industryHeight = cur.clientHeight;
  23. }
  24. });
  25. },
  26. .show{
  27. height: auto;
  28. border-bottom: 1px solid #ebebeb;
  29. }
  30. .hidde{
  31. height: 40px;
  32. overflow: hidden;
  33. border-bottom: 1px solid #ebebeb;
  34. }
  35. .list-filter {
  36. position: relative;
  37. margin-bottom: 20px;
  38. font-size: 14px;
  39. }
  40. .list-filter dl {
  41. overflow: hidden;
  42. }
  43. .list-filter dt {
  44. float: left;
  45. font-weight: 400;
  46. height: 40px;
  47. line-height: 40px;
  48. }
  49. .list-filter dd {
  50. margin-left: 30px;
  51. float: left;
  52. width: 85%;
  53. line-height: 40px;
  54. }
  55. .unfold{
  56. font-size: 14px;
  57. color: #00A971;
  58. cursor: pointer;
  59. font-style: normal;
  60. vertical-align: middle;
  61. display: inline-block;
  62. height: 40px;
  63. line-height: 40px;
  64. }
  65. .list-filter a {
  66. color: #333;
  67. display: inline-block;
  68. margin-right: 20px;
  69. padding: 0 5px;
  70. text-decoration: none;
  71. line-height: 2em;
  72. z-index: 0;
  73. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/76798
推荐阅读