91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue如何實現列表固定列滾動

發布時間:2022-07-14 13:45:15 來源:億速云 閱讀:414 作者:iii 欄目:開發技術

這篇文章主要介紹了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 {
  width: 100vw; height: 100vh;
  box-sizing: border-box;
  padding: 5vh 5vw;
  background: #000;
}
$headHei: 40px;
.table-box {
  width: 100%; height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
    .fixedHeadBox {
      background: pink;
      height: $headHei;
    }
    .nomalHeadBox {
      background: yellow;
      height: $headHei;
      overflow: hidden;
    }
    .fixedListBox{
      height: calc(100% - #{$headHei});
      background: lightblue;
      overflow: hidden;
    }
    .nomalListBox {
      background: #fff;
      height: calc(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', isfixed: true },
      { 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 = 0; let 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;
        height: calc(100% + 10px);
    }
}
.fixedListBox{
    >div {
        overflow: auto;
        height: 100%;
        width: calc(100% + 10px);
    }
}

關于“vue如何實現列表固定列滾動”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“vue如何實現列表固定列滾動”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

象州县| 左贡县| 宣恩县| 柳林县| 炎陵县| 嘉善县| 正镶白旗| 蒙自县| 宜丰县| 岫岩| 岳西县| 承德县| 乐平市| 伊宁市| 辽阳市| 原阳县| 汕头市| 凭祥市| 西林县| 子长县| 顺义区| 海淀区| 凤山市| 广宗县| 黄平县| 罗山县| 潞城市| 安顺市| 武夷山市| 清原| 龙州县| 湖州市| 荥经县| 遂昌县| 前郭尔| 信宜市| 西宁市| 新乡市| 宜川县| 阿瓦提县| 连平县|