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