成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

vue實(shí)現(xiàn)列表固定列滾動(dòng)

3403771864 / 1104人閱讀

  想要在移動(dòng)端中實(shí)現(xiàn)列表固定列固定樣式,可以用vue+scss以下具體內(nèi)容:

  功能介紹:

  在移動(dòng)端開發(fā)中,會(huì)用到列表作為信息展示方式,一般希望上下滾動(dòng)時(shí),可以固定表頭,左右滾動(dòng)時(shí),可以固定最左列。

  大致需求:

  1、數(shù)組循環(huán)遍歷可以讓列表所有內(nèi)容循環(huán)展示

  2、在上下滾動(dòng)時(shí),固定表頭在最頂端顯示;

  3、在左右滾動(dòng)時(shí),固定左邊一列或多列可以固定顯示;

  4、列表的列寬允許在數(shù)組中設(shè)置;

  整體思路:

  1、頁面使用四個(gè)bom元素分別存儲(chǔ)四種元素:

  1)固定在左上角,完全不參與滾動(dòng)表頭元素;

  2)固定在頂部,只允許左右滾動(dòng)表頭元素;

  3)固定在左側(cè),只允許上下滾動(dòng)列元素;

  4)右下角,左右上下均可隨意滾動(dòng)列元素;

  2、表頭數(shù)組與列表數(shù)據(jù)數(shù)組之間互相聯(lián)系,表頭屬性可以控制列表列排序、列表寬度、是否為固定列等;

  3、四個(gè)dom之間增加聯(lián)動(dòng),使用@scroll、scrollLeft、scrollTop;

  具體實(shí)現(xiàn):

  一、display:flex布局,分為四組容器布局:


  

<!-- 寬度增加動(dòng)態(tài)設(shè)置 -->
  <div class="box">
  <div class="table-box">
  <div class="fixedHeadBox"
  :style="{width: fixedWid}"></div>
  <div class="nomalHeadBox"
  style="{width: 'calc(100% - '+fixedWid+')'}"
  ></div>
  <div class="fixedListBox"
  :style="{width: fixedWid}"></div>
  <div class="nomalListBox"
  :style="{width: 'calc(100% - '+fixedWid+')'}"
  ></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;
  }
  }


  二、列表頭部、內(nèi)部數(shù)據(jù)綁定:

  應(yīng)用到v-for遍歷表頭、列表數(shù)據(jù),并計(jì)算列表寬度:

  <div class="fixedHeadBox" :style="{width: fixedWid}">
  <ul>
  <li v-for="(item, index) in fixedHead" :key="index"
  :style="{width: item.width}">
  {{item.name}}
  </li>
  </ul>
  </div>
  <div class="nomalHeadBox"
  :style="{width: 'calc(100% - '+fixedWid+')'}">
  <div ref="nomalHeadBox">
  <ul :style="{width: nomalWid}">
  <li v-for="(item, index) in nomalHead"
  :key="index" :style="{width: item.width}">
  {{item.name}}
  </li>
  </ul>
  </div>
  </div>
  <div class="fixedListBox" :style="{width: fixedWid}">
  <div ref="fixedListBox">
  <ul v-for="(item, index) in list" :key="index" >
  <li v-for="(it, index) in fixedHead" :key="index"
  :style="{width: it.width}">
  {{item[it.prop]}}
  </li>
  </ul>
  </div>
  </div>
  <div class="nomalListBox" ref="nomalListBox"
  :style="{width: 'calc(100% - '+fixedWid+')'}">
  <ul :style="{width: nomalWid}"
  v-for="(item, index) in list" :key="index">
  <li v-for="(it, index) in nomalHead" :key="index"
  :style="{width: it.width}">
  {{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';
  }
  }

  三、列表滾動(dòng)聯(lián)動(dòng):

  除左上角元素外,其余三個(gè)元素均有聯(lián)動(dòng)滾動(dòng)效果,增加滾動(dòng)監(jiān)聽事件@scroll。

  <div class="nomalHeadBox"
  :style="{width: 'calc(100% - '+fixedWid+')'}">
  <div ref="nomalHeadBox" @scroll="scrollHList">
  ......
  </div>
  </div>
  <div class="fixedListBox" :style="{width: fixedWid}">
  <div ref="fixedListBox" @scroll="scrollFList">
  ......
  </div>
  </div>
  <div class="nomalListBox" ref="nomalListBox"
  @scroll="scrollList"
  :style="{width: 'calc(100% - '+fixedWid+')'}">
  ......
  </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;
  }
  }

  四、去除頭部、左側(cè)列表滾動(dòng)標(biāo)簽的滾動(dòng)條:

  .nomalHeadBox {
  >div {
  overflow: auto;
  height: calc(100% + 10px);
  }
  }
  .fixedListBox{
  >div {
  overflow: auto;
  height: 100%;
  width: calc(100% + 10px);
  }
  }

        以上是全部內(nèi)容,請大家多多關(guān)注,后續(xù)更多精彩內(nèi)容。

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/127699.html

相關(guān)文章

  • jsu系之表格組件 ---- jsu.Table

    摘要:作者注是基于擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于的組件該庫基于,暫時(shí)未找到版本因此在此造輪子。本文將記錄系列所有組件開發(fā)過程中遇到的問題和解決思路,歡迎討論和指正。 作者注:jsu.Table是基于jQuery擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于Element.ui的Table組件(該UI庫基于vue.js,暫時(shí)未找到j(luò)Query版本因此在此造輪子)。本文將記錄jsu系列所有組件開發(fā)過程...

    soasme 評論0 收藏0
  • jsu系之表格組件 ---- jsu.Table

    摘要:作者注是基于擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于的組件該庫基于,暫時(shí)未找到版本因此在此造輪子。本文將記錄系列所有組件開發(fā)過程中遇到的問題和解決思路,歡迎討論和指正。 作者注:jsu.Table是基于jQuery擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于Element.ui的Table組件(該UI庫基于vue.js,暫時(shí)未找到j(luò)Query版本因此在此造輪子)。本文將記錄jsu系列所有組件開發(fā)過程...

    everfly 評論0 收藏0
  • jsu系之表格組件 ---- jsu.Table

    摘要:作者注是基于擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于的組件該庫基于,暫時(shí)未找到版本因此在此造輪子。本文將記錄系列所有組件開發(fā)過程中遇到的問題和解決思路,歡迎討論和指正。 作者注:jsu.Table是基于jQuery擴(kuò)展的原生表格插件,設(shè)計(jì)理念來源于Element.ui的Table組件(該UI庫基于vue.js,暫時(shí)未找到j(luò)Query版本因此在此造輪子)。本文將記錄jsu系列所有組件開發(fā)過程...

    張巨偉 評論0 收藏0
  • 我是如何做固定頭部(thead)的

    摘要:我希望就用一個(gè),盡可能的減少輔助節(jié)點(diǎn),把這個(gè)事情搞定模擬我們嘗試給加上,再指定,然后這個(gè)就脫離的文檔流,固定在頁面頂部顯示了,還好,所有支持的瀏覽器都表現(xiàn)一致,就連也生效了。但是,使用或后,原本所占的高度就沒有了,因?yàn)槊撾x了文檔流。 在前端開發(fā)中經(jīng)常遇到需要頁面滾動(dòng)時(shí),固定某個(gè)區(qū)域顯示,常見表格的需求,因?yàn)楸砀裼泻芏嗔校绻忻还潭ㄔ陧敳匡@示,滾動(dòng)到底部時(shí),可能就不知道某些列對應(yīng)的是...

    crossea 評論0 收藏0
  • 網(wǎng)頁版模仿Excel

    摘要:鼠標(biāo)按下拖拽多選單元格這個(gè)是本唯一的亮點(diǎn)了個(gè)人認(rèn)為。這樣做的結(jié)果是頁面非???,因?yàn)槭髽?biāo)移動(dòng)過程會(huì)多次觸發(fā)鼠標(biāo)移動(dòng)事件,會(huì)多次進(jìn)行單元格元素循環(huán)遍歷。 網(wǎng)頁版模仿Excel 最近公司閑的dan疼,非要模仿Excel做一個(gè)網(wǎng)頁版的Excel,剛開始聽說要做這么一個(gè)東西的時(shí)候瞬間覺得公司領(lǐng)導(dǎo)高(sang)瞻(xin)遠(yuǎn)(bing)矚(kuang),只能頭鐵的接下了,那就開始干。其實(shí)主要目的是...

    james 評論0 收藏0

發(fā)表評論

0條評論

最新活動(dòng)
閱讀需要支付1元查看
<