$foreach(column in genTable.Columns)
$set(labelName = "")
$set(columnName = "")
$set(numLabel = "")
$if(column.IsQuery == true)
$set(columnName = column.CsharpFieldFl)
$if(column.ColumnComment != "")
$set(labelName = column.ColumnComment)
$else
$set(labelName = column.CsharpFieldFl)
$end
$if(column.CsharpType == "int" || column.CsharpType == "long")
$set(numLabel = ".number")
$end
$if(column.HtmlType == "month")
$elseif(column.HtmlType == "datetime")
$elseif(column.HtmlType == "datePicker")
$elseif(column.HtmlType.Contains("select") || column.HtmlType == "radio")
{{ item.dictLabel }}
{{ item.dictValue }}
$elseif(column.HtmlType == "radio")
{{item.dictLabel}}
$else
$end
$end
$end
{{ ${t}t('btn.search') }}
{{ ${t}t('btn.reset') }}
$if(replaceDto.ShowBtnAdd)
{{ ${t}t('btn.add') }}
$end
$if(replaceDto.ShowBtnMultiDel)
{{ ${t}t('btn.edit') }}
{{ ${t}t('btn.delete') }}
$end
$if(replaceDto.ShowBtnTruncate)
{{ ${t}t('btn.clean') }}
$end
$if(replaceDto.ShowBtnExport)
{{ ${t}t('btn.export') }}
$end
$if(replaceDto.ShowBtnMultiDel)
$end
$if(null != genTable.SubTableName && "" != genTable.SubTableName && genTable.TplCategory == "subNav")
$foreach(subColumn in genSubTable.Columns)
{{ props.row.$tool.FirstLowerCase(genTable.SubTable.ClassName)Nav.${subColumn.CsharpFieldFl} }}
$end
$end
$if(null != genTable.SubTableName && "" != genTable.SubTableName && genTable.TplCategory == "subNavMore")
$foreach(subColumn in genSubTable.Columns)
$if(subColumn.IsList == true)
$end
$end
$end
$foreach(column in genTable.Columns)
$set(labelName = column.ColumnComment)
$set(showToolTipHtml = "")
$set(columnName = column.CsharpFieldFl)
$if(column.CsharpType == "string" || column.HtmlType == "datetime")
$set(showToolTipHtml = " :show-overflow-tooltip=\"true\"")
$end
$if(column.IsList == true)
$if(column.HtmlType == "customInput" && column.IsPk == false)
{{scope.row.${columnName}}}
$elseif(column.HtmlType == "imageUpload")
$elseif(column.HtmlType == "checkbox" || column.HtmlType.Contains("select") || column.HtmlType == "radio")
$if(column.HtmlType == "checkbox")
$else
$end
$elseif(column.HtmlType == "datetime")
$else
$end
$end
$end
$if(replaceDto.OperBtnStyle == 2)
$if(replaceDto.ShowBtnView)
$end
$if(replaceDto.ShowBtnEdit)
$end
$if(replaceDto.ShowBtnDelete)
$end
$else
$if(replaceDto.ShowBtnView)
$end
$if(replaceDto.ShowBtnEdit)
$end
$if(replaceDto.ShowBtnDelete)
$end
$end
$foreach(column in genTable.Columns)
$set(columnName = column.CsharpFieldFl)
$set(value = "item.dictValue")
$set(number = "")
$set(labelName = column.ColumnComment)
$if(column.CsharpType == "int" || column.CsharpType == "long")
$set(value = "parseInt(item.dictValue)")
$set(number = ".number")
$end
$if(column.IsPK || column.IsIncrement)
$if(column.IsPK && column.IsIncrement == false)
$else
$end
$else
$if(column.HtmlType == "inputNumber" || column.HtmlType == "customInput")
$elseif(column.HtmlType == "datetime" || column.HtmlType == "month")
$elseif(column.HtmlType == "imageUpload")
$elseif(column.HtmlType == "fileUpload")
$elseif(column.HtmlType == "radio" || column.HtmlType == "selectRadio")
{{item.dictLabel}}
$elseif(column.HtmlType == "textarea")
$elseif(column.HtmlType == "editor")
$elseif(column.HtmlType == "select" || column.HtmlType == "selectMulti")
$elseif(column.HtmlType == "checkbox")
{{item.dictLabel}}
$elseif(column.HtmlType == "colorPicker")
$else
$end
$end
$end
{{ ${t}t('btn.cancel') }}
{{ ${t}t('btn.submit') }}