try {
this.matterRuleColumnsDetailsResponseList.forEach((item: any) => {
if (item.columnType === 'checkbox') {
let arr = []
item.matterRuleColumnsChooseValueResponseList.forEach(element => {
if (element.checked) {
arr.push(element.value)
}
});
item.columnValue = arr.join()
}
if(!item.columnValue){
throw new Error(item.columnTitle+'不能为空');
}
})
}catch(err) {
console.log(err);
this.message.error(err.message);
return;
}
JokerChor
用追马的时间去种草。
JokerChor
用追马的时间去种草。