前端时间选择组件新增加格式化时间属性

This commit is contained in:
不做码农 2021-11-24 13:50:57 +08:00
parent 39616e7e8f
commit 2558f6cc4b

View File

@ -135,7 +135,7 @@ namespace ZR.CodeGenerator
{ {
//时间 //时间
sb.AppendLine($" <el-form-item label=\"{labelName}\" :label-width=\"labelWidth\" prop=\"{columnName}\">"); sb.AppendLine($" <el-form-item label=\"{labelName}\" :label-width=\"labelWidth\" prop=\"{columnName}\">");
sb.AppendLine($" <el-date-picker v-model=\"form.{columnName}\" type=\"datetime\" placeholder=\"选择日期时间\" default-time=\"12:00:00\"> </el-date-picker>"); sb.AppendLine($" <el-date-picker v-model=\"form.{columnName}\" format=\"yyyy-MM-dd HH:mm:ss\" value-format=\"yyyy-MM-dd HH:mm:ss\" type=\"datetime\" placeholder=\"选择日期时间\"> </el-date-picker>");
sb.AppendLine(" </el-form-item>"); sb.AppendLine(" </el-form-item>");
} }
else if (dbFieldInfo.HtmlType == GenConstants.HTML_IMAGE_UPLOAD) else if (dbFieldInfo.HtmlType == GenConstants.HTML_IMAGE_UPLOAD)