changeSupplie(data) {
let arr = "";
this.optionList &&
this.optionList.supplierEnumList.map((item, index) => {
if (item.value == data) {
arr = item.desc;
}
});
return arr;
},
前端那些事20240112-前端那些事-数据之间的转换
阅读 10
2024-03-19
changeSupplie(data) {
let arr = "";
this.optionList &&
this.optionList.supplierEnumList.map((item, index) => {
if (item.value == data) {
arr = item.desc;
}
});
return arr;
},
相关推荐
精彩评论(0)