欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js将数据分为两组

程序员文章站 2022-06-03 17:45:50
...

问题描述:

将回传数据分为两组,分别渲染两个el-table

this.total = res.data
//表格分组
this.data1 = []
this.data2 = []
const num = Math.ceil(this.total.length / 2)
for(let i = 0;i < 2;i++){
 for(let j = num*i;j<(i+1)*num;j++){
  if(total[j]){
   if(i === 0){
    this.data1.push(this.total[j])
   }else{
    this.data2.push(this.total[j])
   }
  }
 }
}