async deleAllIdx() {
const { data: res } = await deletevipIdx(this.viplId, 0); // channel=this.channelId 和 传递参数 idx=0
this.formData = this.formData.map(item => ({
...item,
status: {},
}));
// 打印每一个的 status
this.formData.forEach(item => {
console.log(item.status, '1111111111111111111111111');
});
},