问题件类型多选优化

This commit is contained in:
wuteng 2026-03-16 17:38:17 +08:00
parent 0a063c783a
commit 9918b0b81b

View File

@ -124,6 +124,10 @@
};
listEmisProblemType(queryParams).then(response => {
this.optionItems = response.rows;
//把id 转字符串
this.optionItems.forEach(item => {
item.id = item.id + '';
});
});
},