给table日期每一个月添加三种不同的产线(稠浆法/干法/辊压法)
1.遍历table数组
2.table下表取余3对应添加的三种不同数据
3.赋值给table列表
源码
let production_line_new = [
{ dict_label: '稠浆法', dict_value: 0 },
{ dict_label: '干法', dict_value: 1 },
{ dict_label: '辊压法', dict_value: 2 },
];
//遍历table数组
dataList.forEach((element, index) => {
//取余赋值
dataList[index].product_line = production_line_new[index % 3];
});
dataArr = dataList;