Jeecg自定义“”操作“”标签,日期显示问题(列表,添加页面)
程序员文章站
2022-04-29 18:29:07
...
自定义函数操作标签 | t:dgFunOpt
<t:dgConfOpt title="审核" url="dataSecurityCompanyInfoController.do?doCheck&id={id}" exp="auditStatus#eq#0" message="确认审核" urlclass="ace_button" urlfont="fa-check"/>
urlfont 按钮iconfont图标
funname 函数定义,弹框,跳转等js操作
<t:dgFunOpt funname="popWin(id,name)" title="确认" urlclass="ace_button" urlfont="fa-trash-o"></t:dgFunOpt>
<script type="text/javascript">
function popWin(){
$.dialog({
content: '内容是url,文本',
lock : true,
width:458,
height:300,
title:"数据智能对比",
opacity : 0.3,
cache:false,
cancelVal: '关闭'
});
</script>
参数名 | 描述 |
---|---|
funname | 自定义函数可传出任意字段 |
title | 操作标题 |
operationCode | 权限操作码,对应按钮权限配置(不设置该字段表示不进行按钮权限控制) |
exp | 是否显示表操作的表达式 例: 字段名#表达式符号#字段值(name#eq#admin),表达式类型支持eq,ne,empty |
langArg | 多语言参数 |
urlclass | 自定义链接风格 |
urlfont | 自定义链接图标 |
urlStyle | 自定义链接样式,直接写style里的内容; e.g: (background-color:#18a689;) |
inGroup | 操作列菜单是否默认隐藏,默认为false |
列表日期显示调整
<t:dgCol title="检查时间" field="checkdate" formatter="yyyy-MM-dd hh:mm" query="true" queryMode="single" width="120"></t:dgCol>
添加页面日期显示问题