RuoYi-Vue中字典的使用
Posted xl4ng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RuoYi-Vue中字典的使用相关的知识,希望对你有一定的参考价值。
1.在data中新建一个变量
alarmLevelOptions:[]
2.获取字典信息
this.getDicts("alarm_level").then(response => {
this.alarmLevelOptions = response.data;
});
3.在页面中使用
<el-form-item label="报警级别" prop="alarmLevel">
<el-select v-model="form.alarmLevel" placeholder="请选择报警级别">
<el-option
v-for="dict in alarmLevelOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
以上是关于RuoYi-Vue中字典的使用的主要内容,如果未能解决你的问题,请参考以下文章