jeecg boot 框架学习(4)— 数据字典使用
1. input页面下拉框使用效果展示实现定义数据字典引用并调用JDictSelectTag组件import JDictSelectTag from '@/components/dict/JDictSelectTag.vue'export default {....components: {JDate,CustomerModal...
·
1. input页面下拉框使用
- 效果展示
- 实现
- 定义数据字典
- 引用并调用JDictSelectTag组件
import JDictSelectTag from '@/components/dict/JDictSelectTag.vue' export default { .... components: { JDate, CustomerModal, JDictSelectTag }, ... }
dictCode为数据字典中定义的code<j-dict-select-tag v-model="queryParam.type1Id" placeholder="请选择类型" dictCode="customer_type"/>
2. list页面显示 数据字典
-
效果展示
处理前
处理后
-
实现
- 实体类添加注解
dicCode为数据字典中定义的code@Dict(dicCode = "customer_type") private String type1Id;
- 修改table column定义
dataIndex值为字段名+"_dictText"{ title:'类型', align:"center", dataIndex: 'type1Id_dictText', },
修改后也可以在vue中查看数据源
3. list页面显示 表关联
- 效果展示
处理前
处理后
- 实现
- 实体类添加注解
@Dict(dicCode = "id",dictTable = "sys_user",dicText = "realname") private String managerId;
dicCode
为关联表的组件
dictTable
为关联表
dicText
为需要显示的内容 - 修改table column定义
dataIndex值为字段名+"_dictText",和数据字典的一致。{ title:'负责人', align:"center", dataIndex: 'managerId_dictText' },
更多推荐
已为社区贡献2条内容
所有评论(0)