例如一个时间段下对应多行数据,这就不免就涉及到了单元格合并
1. 为每一个时间段下的 每一行 数据中都添加上对应的时间段数据
2. 设定一个数组来存放要合并的格数,同时还要设定一个变量来记录,当时间段不同时数据的索引
3. 遍历表格数据
//html:
<el-table :data="tableData" border style="width: 100%" :span-method="objSpan">
<!--el-table-column-->
</el-table>
//js:
data:function(){
return{
tableData:null,//数据
spanArr: [],
position: 0,
}
},
created:function(){
this.getData()
},
methods:{
getData:function(){//获取数据
let test=[{
businessDate:'2019-10-5',
userNum:12,
consumeMoney:100,
platIncome:90,
detial:[
{
lotteryId:1,
lotteryName:'名称01',
consumeMoney:10,
platIncome:10,
probability:'爆率01'
},
],
},{
businessDate:'2019-10-6',
userNum:12,
consumeMoney:100,
platIncome:90,
detial:[
{
lotteryId:1,
lotteryName:'名称01',
consumeMoney:10,
platIncome:10,
probability:'爆率01'
},
{
lotteryId:2,
lotteryName:'名称02',
consumeMoney:20,
platIncome:60,
probability:'爆率02'
},
],
}]
this.handleData(test);
},
handleData:function(list){//处理数据
//首先需要把数据处理下,把detial的数据提取到外层合并。
let arr=[]
for(let i in list){
let detial=list[i].detial;
for(let j in detial){
arr.push({
businessDate:list[i].businessDate,
userNum:list[i].userNum,
consumeMoney:list[i].consumeMoney,
platIncome:list[i].platIncome,
//详情
detial_lotteryId:detial[j].lotteryId,
detial_lotteryName:detial[j].lotteryName,
detial_consumeMoney:detial[j].consumeMoney,
detial_platIncome:detial[j].platIncome,
detial_probability:detial[j].probability,
})
}
}
//然后需要将返回的数据按照该字段(businessDate)进行处理。将相同businessDate的信息的索引进行对应存储。
arr.forEach((item,index) => {
if( index === 0){
this.spanArr.push(1);
this.position = 0;
}else{
if(arr[index].businessDate === arr[index-1].businessDate){//日期
this.spanArr[this.position] += 1;
this.spanArr.push(0);
}else{
this.spanArr.push(1);
this.position = index;
}
}
})
this.tableData=arr;
},
objSpan:function({row,column, rowIndex, columnIndex}){
if (columnIndex > 3) {//只合并前4列
return;
}
const _row = this.spanArr[rowIndex];
const _col = _row>0 ? 1 : 0;
return {
rowspan: _row,
colspan: _col
}
},
}
Vue.js 是一个目前比较流行的前端框架,在业界也算很有名气,今天这里为大家罗列一下基于Vue的后端管理的框架。使用这些框架你会发现它包括了我们常用的路由,状态,交互等等,这篇文章主要介绍element和Vue Admin。
除了Document类型,我们Web编程中最常用的类型就是Element类型啦.Element 类型用于表现XML或HTML元素,提供了对元素标签名,子节点,特性的访问
在选择element-ui组件做开发的时候,发现直接使用@keyup.enter的形式监听不到回车事件,原因是element-ui自身封装了一层input标签,把原有的事件隐藏了。解决方法是:在enter后面加上.native
一般在后端管理项目中,都会涉及菜单管理。菜单都是树形结构的数据,我们在使用ElementUI的时候,发现并没提供相应的树形表格组件,所以需要自己来实现。下面就简单讲解下element-ui中table树形表格的实现代码
做管理平台的项目,用到了element-ui,需要通过监听el-table滚动的位置来获取最新的数据,那么怎么样监听el-table的滚动呢?我们默认的技术栈是 vue+element-ui
通过tree树形控件的default-checked-keys属性来设置默认选中的节点,Tree树形控件通过后台接口获取到数组数据,还需要再次遍历,将它再遍历为数组,这样我们才可以调用
使用ElementUi搭建框架的时候,大家应该都有考虑过怎么做全局验证,毕竟复制粘贴什么的是最烦了,一般验证规则,主要是是否必填,不为空,以及参数类型的验证。
使用element-ui中的Notification,只有一个message属性是有很大的操作空间,其余的都是写死的,无法进行扩展,达不到想要的效果。所以只能在message上下功夫。在element-ui官方文档中可以看到Notification中的message属性
Element UI的Message消息提示是点击一次触发一次的。在开发的时候经常会作为一些校验提示,但是公司的测试人员在进行测试时会一直点,然后就会出现如下图的情况。虽然客户使用的时候一般来说不会出现这种情况
如果程序报错Duplicate keys detected: tab-xxx. This may cause an update error.八成是key重复了,首先检查一下v-for循环的key是否有问题;在<el-tab-pane>尽量不使用v-show控制标签的显示
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!