#foreach($column in $columns)
#if ($column.listOperation)
#set ($dictType=$column.dictType)
#set ($javaField = $column.javaField)
#set ($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
#set ($comment=$column.columnComment)
#set ($parentheseIndex=$column.columnComment.indexOf("("))
#if ($parentheseIndex >= 0) #set($comment=$column.columnComment.substring(0, $parentheseIndex)) #end
#if ($column.htmlType == "input")
#elseif ($column.htmlType == "select" || $column.htmlType == "radio")
#if ("" != $dictType)## 设置了 dictType 数据字典的情况
#else## 未设置 dictType 数据字典的情况
#end
#elseif($column.htmlType == "datetime")
#if ($column.queryType != "BETWEEN")## 非范围
#else## 范围
#end
#end
#end
#end
搜索
重置
新增
导出
#foreach($column in $columns)
#if ($column.listOperationResult)
#set ($dictType=$column.dictType)
#set ($javaField = $column.javaField)
#set ($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
#set ($comment=$column.columnComment)
#set ($parentheseIndex=$column.columnComment.indexOf("("))
#if ($parentheseIndex >= 0) #set($comment=$column.columnComment.substring(0, $parentheseIndex)) #end
#if ($column.javaType == "Date")## 时间类型
{{ parseTime(scope.row.${javaField}, '{y}-{m}-{d}') }}
#elseif("" != $column.dictType)## 数据字典
{{ getDictDataLabel(DICT_TYPE.$dictType.toUpperCase(), scope.row.javaField) }}
>
#else
#end
#end
#end
修改
删除
#foreach($column in $columns)
#if ($column.createOperation || $column.updateOperation)
#set ($dictType = $column.dictType)
#set ($javaField = $column.javaField)
#set ($AttrName = $column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
#set ($comment = $column.columnComment)
#set ($parentheseIndex = $column.columnComment.indexOf("("))
#if ($parentheseIndex >= 0) #set($comment = $column.columnComment.substring(0, $parentheseIndex)) #end
#if ($column.htmlType == "input")
#if (!$column.primaryKey)## 忽略主键,不用在表单里
#end
#elseif($column.htmlType == "imageUpload")
#elseif($column.htmlType == "fileUpload")
#elseif($column.htmlType == "editor")
#elseif($column.htmlType == "select" && "" != $dictType)
#elseif($column.htmlType == "select" && $dictType)
#elseif($column.htmlType == "checkbox" && "" != $dictType)
{{dict.dictLabel}}
#elseif($column.htmlType == "checkbox" && $dictType)
请选择字典生成
#elseif($column.htmlType == "radio" && "" != $dictType)
{{dict.dictLabel}}
#elseif($column.htmlType == "radio" && $dictType)
请选择字典生成
#elseif($column.htmlType == "datetime")
#elseif($column.htmlType == "textarea")
#end
#end
#end