@@ -187,6 +196,8 @@ $else
$end
+$elseif(column.HtmlType == "datetime")
+
$else
$end
@@ -243,7 +254,7 @@ $if(column.HtmlType == "inputNumber" || column.HtmlType == "customInput")
-$elseif(column.HtmlType == "datetime")
+$elseif(column.HtmlType == "datetime" || column.HtmlType == "month")
@@ -265,7 +276,7 @@ $elseif(column.HtmlType == "radio" || column.HtmlType == "selectRadio")
- {{item.dictLabel}}
+ {{item.dictLabel}}
@@ -286,8 +297,9 @@ $elseif(column.HtmlType == "select" || column.HtmlType == "selectMulti")
@@ -296,7 +308,9 @@ $elseif(column.HtmlType == "checkbox")
- {{item.dictLabel}}
+
+ {{item.dictLabel}}
+
@@ -335,7 +349,7 @@ import Editor from '@/components/Editor'
$end
const { proxy } = getCurrentInstance()
-// 选中${replaceDto.FistLowerPk}数组数组
+// 选中${replaceDto.FistLowerPk}数组
const ids = ref([])
const loading = ref(false)
const showSearch = ref(true)
diff --git a/ZR.Service/System/GenTableService.cs b/ZR.Service/System/GenTableService.cs
index 9490f85..47e398d 100644
--- a/ZR.Service/System/GenTableService.cs
+++ b/ZR.Service/System/GenTableService.cs
@@ -153,10 +153,11 @@ namespace ZR.Service.System
column.DictType = prevColumn.DictType;
column.QueryType = prevColumn.QueryType;
}
- if (column.ColumnComment.IsEmpty())
- {
- column.ColumnComment = prevColumn.ColumnComment;
- }
+ //不同步列说明
+ //if (column.ColumnComment.IsEmpty())
+ //{
+ // column.ColumnComment = prevColumn.ColumnComment;
+ //}
updateColumns.Add(column);
}
}