|
1.
res.list.forEach((item) => {
item.className = "normal";
item.month = this.$parent.$refs.search.searchParams.month;
});
2.
{
prop: "month",
label: "所属月份",
minWidth: 110,
filter: (value, data) => {
return value.split('-')[0] + '年' + value.split('-')[1] + '月'
},
},
|
|