修复自定义属性字典选项显示问题,将标签从key改为value以正确显示字典值

This commit is contained in:
WUSIJIAN
2025-12-17 09:19:50 +08:00
parent 4e7cf02029
commit bf3156fcce

View File

@@ -78,7 +78,7 @@
<el-option <el-option
v-for="(item, idx) in getDictValuesByType(attr.description)" v-for="(item, idx) in getDictValuesByType(attr.description)"
:key="idx" :key="idx"
:label="item.key" :label="item.value"
:value="item.key" :value="item.key"
/> />
</el-select> </el-select>