温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

vue如何实现列表固定列滚动

发布时间:2022-07-14 13:45:15 阅读:433 作者:iii 栏目:开发技术
Vue开发者专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

这篇文章主要介绍了vue如何实现列表固定列滚动的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇vue如何实现列表固定列滚动文章都会有所收获,下面我们一起来看看吧。

功能介绍:

在移动端开发中,会用到列表作为信息展示方式,一般希望上下滚动时,可以固定表头,左右滚动时,可以固定最左列。

大致需求:

1、列表可以使用数组循环遍历;
2、上下滚动时,可以固定表头在最顶端显示;
3、左右滚动时,可以固定左边一列或多列可以固定显示;
4、列表的列宽允许在数组中设置;

整体思路:

1、页面使用四个bom元素分别存储四种元素:

1)固定在左上角,完全不参与滚动表头元素;
2)固定在顶部,只允许左右滚动表头元素;
3)固定在左侧,只允许上下滚动列元素;
4)右下角,左右上下均可随意滚动列元素;

2、表头数组与列表数据数组之间互相联系,表头属性可以控制列表列排序、列表宽度、是否为固定列等;

3、四个dom之间增加联动,使用@scroll、scrollLeft、scrollTop;

具体实现:

一、display:flex布局,分为四组容器布局:

vue如何实现列表固定列滚动

<!-- 宽度增加动态设置 -->
<div class="box">
  <div class="table-box">
    <div class="fixedHeadBox" 
      :></div>
    <div class="nomalHeadBox"
      
    ></div>
    <div class="fixedListBox" 
      :></div>
      <div class="nomalListBox"
        :
      ></div>
    </div>
  </div>
</div>
export default {
  data() {
    return {
      fixedWid''
    };
  }
}
.box {
  width100vwheight100vh;
  box-sizing: border-box;
  padding5vh 5vw;
  background#000;
}
$headHei40px;
.table-box {
  width100%height100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
    .fixedHeadBox {
      background: pink;
      height$headHei;
    }
    .nomalHeadBox {
      background: yellow;
      height$headHei;
      overflow: hidden;
    }
    .fixedListBox{
      heightcalc(100% - #{$headHei});
      background: lightblue;
      overflow: hidden;
    }
    .nomalListBox {
      background#fff;
      heightcalc(100% - #{$headHei});
      overflow: auto;
    }
}

二、列表头部、内部数据绑定:

应用到v-for遍历表头、列表数据,并计算列表宽度:

<div class="fixedHeadBox" :>
  <ul>
    <li v-for="(item, index) in fixedHead" :key="index" 
      :>
        {{item.name}}
    </li>
  </ul>
</div>
<div class="nomalHeadBox"
  :>
  <div ref="nomalHeadBox">
    <ul :>
      <li v-for="(item, index) in nomalHead" 
        :key="index" :>
        {{item.name}}
      </li>
    </ul>
  </div>
</div>
<div class="fixedListBox" :>
  <div ref="fixedListBox">
    <ul v-for="(item, index) in list" :key="index" >
      <li v-for="(it, index) in fixedHead" :key="index" 
        :>
        {{item[it.prop]}}
      </li>
    </ul>
  </div>
</div>
<div class="nomalListBox" ref="nomalListBox"
  :>
  <ul : 
    v-for="(item, index) in list" :key="index">
    <li v-for="(it, index) in nomalHead" :key="index" 
      :>
      {{item[it.prop]}}
    </li>
  </ul>
</div>
data() {
  return {
    tableHead: [
      { name''prop'a'width'100px'isfixedtrue },
      { name''prop'b'width'80px' },
      { name''prop'c'width'80px' },
      { name''prop'd'width'100px' },
      { name''prop'e'width'100px' },
      { name''prop'f'width'100px' },
      { name''prop'g'width'120px' }
    ],
    list: [
      { a''b''c''d''e''f''g'' }
    ],
    fixedHead: [],
    nomalHead: [],
    fixedWid'',
    nomalWid''
  };
},
mounted() {
  this.initData();
},
methods: {
  initData() {
    this.fixedHead = this.tableHead.filter((item) => {
      return item.isfixed
    });
    this.nomalHead = this.tableHead.filter((item) => {
      return !item.isfixed
    });
    this.initSize();
  },
  initSize() {
    let fwid = 0let nwid = 0;
    this.fixedHead.forEach((item) => {
      // 此处以px单位为例
      const len = item.width.length - 2;
      const width = item.width.substring(0, len) - 0;
      fwid += width;
    });
    this.nomalHead.forEach((item) => {
      const len = item.width.length - 2;
      const width = item.width.substring(0, len) - 0;
      nwid += width;
    });
    this.fixedWid = fwid + 'px';
    this.nomalWid = nwid + 'px';
  }
}

三、列表滚动联动:

除左上角元素外,其余三个元素均有联动滚动效果,增加滚动监听事件@scroll。

<div class="nomalHeadBox"
    :>
    <div ref="nomalHeadBox" @scroll="scrollHList">
        ......
    </div>
</div>
<div class="fixedListBox" :>
    <div ref="fixedListBox" @scroll="scrollFList">
        ......
    </div>
</div>
<div class="nomalListBox" ref="nomalListBox"
    @scroll="scrollList"
    :>
    ......
</div>
methods: {
  scrollHList() {
    this.$refs.nomalListBox.scrollLeft =
      this.$refs.nomalHeadBox.scrollLeft;
  },
  scrollFList() {
    this.$refs.nomalListBox.scrollTop =
      this.$refs.fixedListBox.scrollTop;
  },
  scrollList() {
    this.$refs.fixedListBox.scrollTop =
      this.$refs.nomalListBox.scrollTop;
    this.$refs.nomalHeadBox.scrollLeft =
      this.$refs.nomalListBox.scrollLeft;
  }
}

四、去除头部、左侧列表滚动标签的滚动条:

.nomalHeadBox {
    >div {
        overflow: auto;
        heightcalc(100% + 10px);
    }
}
.fixedListBox{
    >div {
        overflow: auto;
        height100%;
        widthcalc(100% + 10px);
    }
}

关于“vue如何实现列表固定列滚动”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“vue如何实现列表固定列滚动”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

vue
AI

开发者交流群×