1.表格插入数据加上插槽
点击事件方法可以加上@click=“ss(scope.row,scope.$index)”
scope.row得到每一行的数据
scope.$index得到每一行的index
<template slot-scope="scope"> </template>
过滤器:filter可以过滤数组里的数据 可获取下标
zzxz(val){
var obj = this.zztypeOption.filter((item)=>{
return item.value == val
});
this.zzobj = obj[0];
},
this.zzableData[this.zzindex].zz=this.zzobj.label//把下拉的数值赋值到表格里