码迷,mamicode.com
首页 > 其他好文 > 详细

RuoYi-Vue中字典的使用

时间:2020-12-03 12:23:54      阅读:13      评论:0      收藏:0      [点我收藏+]

标签:rop   sele   -o   for   alarm   ons   pre   val   mod   

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中字典的使用

标签:rop   sele   -o   for   alarm   ons   pre   val   mod   

原文地址:https://www.cnblogs.com/xl4ng/p/14056593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!