#foreach($column in $editColumns)
#set( $listSize = $!{editColumns.size()})
#set( $next = $!velocityCount - 2 )
#set($dictType=$column.dictType)
#set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
#set($parentheseIndex=$column.columnComment.indexOf("("))
#if($parentheseIndex != -1)
#set($comment=$column.columnComment.substring(0, $parentheseIndex))
#else
#set($comment=$column.columnComment)
#end
##这里根据不同新行概念而定,如果需要选择新行后独占一行则开启注释部分
###if($column.isNewRow == '1' && $velocityCount !=1 && ($next>=0 && $editColumns.get($next).isNewRow != '1'))
##
##
###end
#if(${colSpans} == '1')
#set($colSpan = $column.colSpan * 24)
#elseif(${colSpans} == '2')
#set($colSpan = $column.colSpan * 12)
#elseif(${colSpans} == '3')
#set($colSpan = $column.colSpan * 8)
#elseif(${colSpans} == '4')
#set($colSpan = $column.colSpan * 6)
#else
#set($colSpan = $column.colSpan * 12)
#end
#if($column.htmlType == "input")
#elseif($column.htmlType == "textarea")
#elseif(($column.htmlType == "number"))
#elseif(($column.htmlType == "datetime"))
#elseif(($column.htmlType == "time"))
#elseif(($column.htmlType == "select") && "" != $dictType)
{{ d.dictLabel }}
#elseif(($column.htmlType == "selectMultiple") && "" != $dictType)
{{ dict.dictLabel }}
#elseif(($column.htmlType == "radioButton") && "" != $dictType)
{{ dict.dictLabel }}
#elseif(($column.htmlType == "radio") && "" != $dictType)
{{ dict.dictLabel }}
#elseif(($column.htmlType == "checkbox") && "" != $dictType)
{{ dict.dictLabel }}
#elseif(($column.htmlType == "user"))
#elseif(($column.htmlType == "dept"))
#end
#if($column.isNewRow == '1' && $listSize != $!velocityCount)
#end
#end
#if($hasAttach)
#end
取消
保存
#if($hasSaveAndAddOption)
保存并继续添加
#end