fix 代码生成文本域类型 搜索框不生成 改为 生成input 一般都是模糊搜索

This commit is contained in:
疯狂的狮子li 2021-10-27 15:26:08 +08:00
parent b6596d021b
commit ef1449d1c0
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#else
#set($comment=$column.columnComment)
#end
#if($column.htmlType == "input")
#if($column.htmlType == "input" || $column.htmlType == "textarea")
<el-form-item label="${comment}" prop="${column.javaField}">
<el-input
v-model="queryParams.${column.javaField}"

View File

@ -11,7 +11,7 @@
#else
#set($comment=$column.columnComment)
#end
#if($column.htmlType == "input")
#if($column.htmlType == "input" || $column.htmlType == "textarea")
<el-form-item label="${comment}" prop="${column.javaField}">
<el-input
v-model="queryParams.${column.javaField}"