using System; using System.Linq; using System.Text; using ZR.CodeGenerator.Model; using ZR.Model.System.Generate; namespace ZR.CodeGenerator { /// /// 代码生成模板 /// public class CodeGenerateTemplate { #region vue 模板 /// /// Vue 添加修改表单 /// /// /// public static string TplVueFormContent(GenTableColumn dbFieldInfo) { string columnName = dbFieldInfo.CsharpFieldFl; string labelName = CodeGeneratorTool.GetLabelName(dbFieldInfo.ColumnComment, columnName); string labelDisabled = dbFieldInfo.IsPk ? ":disabled=\"true\"" : ""; StringBuilder sb = new StringBuilder(); string value = CodeGeneratorTool.IsNumber(dbFieldInfo.CsharpType) ? "parseInt(item.dictValue)" : "item.dictValue"; if (GenConstants.inputDtoNoField.Any(f => f.ToLower().Contains(dbFieldInfo.CsharpField.ToLower()))) { return sb.ToString(); } if (!dbFieldInfo.IsInsert && !dbFieldInfo.IsEdit && !dbFieldInfo.IsPk) { return sb.ToString(); } if (dbFieldInfo.HtmlType == GenConstants.HTML_INPUT_NUMBER) { //数字框 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_DATETIME) { //时间 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_IMAGE_UPLOAD) { //图片 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($@" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_FILE_UPLOAD) { //文件 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($@" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_RADIO) { //单选按钮 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); if (string.IsNullOrEmpty(dbFieldInfo.DictType)) { sb.AppendLine(" 请选择字典生成"); } sb.AppendLine($" {{{{item.dictLabel}}}}"); sb.AppendLine(" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_TEXTAREA) { //文本域 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_EDITOR) { //编辑器 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.HtmlType == GenConstants.HTML_SELECT) { //下拉框 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); if (string.IsNullOrEmpty(dbFieldInfo.DictType)) { sb.AppendLine($" "); } sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if( dbFieldInfo.HtmlType == GenConstants.HTML_CHECKBOX) { //多选框 sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); if (string.IsNullOrEmpty(dbFieldInfo.DictType)) { sb.AppendLine($" 请选择字典生成"); } sb.AppendLine($" {{{{item.dictLabel}}}}"); sb.AppendLine(" "); sb.AppendLine(" "); sb.AppendLine(" "); } else { string inputNumTxt = CodeGeneratorTool.IsNumber(dbFieldInfo.CsharpType) ? ".number" : ""; sb.AppendLine(" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } return sb.ToString(); } /// /// Vue 查询表单 /// /// /// public static string TplQueryFormHtml(GenTableColumn dbFieldInfo) { StringBuilder sb = new(); string columnName = dbFieldInfo.CsharpFieldFl; string labelName = CodeGeneratorTool.GetLabelName(dbFieldInfo.ColumnComment, dbFieldInfo.CsharpField); if (!dbFieldInfo.IsQuery) return sb.ToString(); if (dbFieldInfo.HtmlType == GenConstants.HTML_DATETIME) { sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); } else if ((dbFieldInfo.HtmlType == GenConstants.HTML_SELECT || dbFieldInfo.HtmlType == GenConstants.HTML_RADIO)) { //string value = CodeGeneratorTool.IsNumber(dbFieldInfo.CsharpType) ? "parseInt(item.dictValue)" : "item.dictValue"; sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if(dbFieldInfo.IsQuery) { string inputNumTxt = CodeGeneratorTool.IsNumber(dbFieldInfo.CsharpType) ? ".number" : ""; sb.AppendLine($" "); sb.AppendLine($" "); sb.AppendLine(" "); } return sb.ToString(); } /// /// Vue 查询列表 /// /// /// /// public static string TplTableColumn(GenTableColumn dbFieldInfo, GenTable genTable) { string columnName = dbFieldInfo.CsharpFieldFl; string label = CodeGeneratorTool.GetLabelName(dbFieldInfo.ColumnComment, columnName); string showToolTip = dbFieldInfo.CsharpType == "string" ? ":show-overflow-tooltip=\"true\"" : ""; string formatter = GetFormatter(dbFieldInfo.HtmlType, columnName); StringBuilder sb = new StringBuilder(); //自定义排序字段 if (GenConstants.HTML_SORT.Equals(dbFieldInfo.HtmlType) && !dbFieldInfo.IsPk && CodeGeneratorTool.IsNumber(dbFieldInfo.CsharpType)) { sb.AppendLine($@" "); sb.AppendLine(@" "); sb.AppendLine(@" "); } else if (dbFieldInfo.IsList && dbFieldInfo.HtmlType.Equals(GenConstants.HTML_IMAGE_UPLOAD)) { sb.AppendLine($" "); sb.AppendLine(" "); sb.AppendLine(" "); } else if (dbFieldInfo.IsList && !string.IsNullOrEmpty(dbFieldInfo.DictType)) { sb.AppendLine($@" "); sb.AppendLine(@" "); sb.AppendLine(@" "); } else if (dbFieldInfo.IsList) { sb.AppendLine($" "); } return sb.ToString(); } #endregion //模板调用 public static string QueryExp(string propertyName, string queryType) { if (queryType.Equals("EQ")) { return $"m => m.{ propertyName} == parm.{propertyName})"; } if (queryType.Equals("GTE")) { return $"m => m.{ propertyName} >= parm.{propertyName})"; } if (queryType.Equals("GT")) { return $"m => m.{ propertyName} > parm.{propertyName})"; } if (queryType.Equals("LT")) { return $"m => m.{ propertyName} < parm.{propertyName})"; } if (queryType.Equals("LTE")) { return $"m => m.{ propertyName} <= parm.{propertyName})"; } if (queryType.Equals("NE")) { return $"m => m.{ propertyName} != parm.{propertyName})"; } if (queryType.Equals("LIKE")) { return $"m => m.{ propertyName}.Contains(parm.{propertyName}))"; } return ""; } /// /// 格式化字典数据显示到table /// /// /// /// public static string GetFormatter(string htmlType, string columnName) { if (htmlType.Equals(GenConstants.HTML_CHECKBOX) || htmlType.Equals(GenConstants.HTML_SELECT) || htmlType.Equals(GenConstants.HTML_RADIO)) { return $" :formatter=\"{columnName}Format\""; } return ""; } } }