modify:公共的获取数据字典相关方法的调整;

RS2508
何应权 2025-11-06 10:10:35 +08:00
parent 3d74019ece
commit 72806eb75b
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ export async function getDictionary(dictType ){
}).then(response => {
dictionary = response.data;
dictionary.map((item) => {
item.text = item.label
item.text = item.label,
item.value = item.value
});
}).catch((e)=>{
console.log("获取下拉值数据时出现异常",e)