字典值thymeleaf 直接调用service层

theamleaf

html 

字典值


var deptIdDatas = [[${@dict.getType('sys_workshop_name')}]];
var datas = [[${@dict.getType('sys_oper_type')}]];

  formatter: function(value, row, index) {
		            	return $.table.selectDictLabel(datas, value);
		            }

java service

 /**
     * 根据字典类型查询字典数据信息
     *
     * @param dictType 字典类型
     * @return 参数键值
     */
    public List getType(String dictType)
    {
        return dictTypeService.selectDictDataByType(dictType);
    }

你可能感兴趣的:(编程,java)