This commit is contained in:
zuohuaijun 2024-11-20 14:19:07 +08:00
commit 91b37ace5e
2 changed files with 4 additions and 4 deletions

View File

@ -60,8 +60,8 @@ public partial class SysCodeGen : EntityBase
/// <summary>
/// 数据库链接
/// </summary>
[SugarColumn(ColumnDescription = "数据库链接", Length = 256)]
[MaxLength(256)]
[SugarColumn(ColumnDescription = "数据库链接", Length = 512)]
[MaxLength(512)]
public string? ConnectionString { get; set; }
/// <summary>

View File

@ -345,10 +345,10 @@ const handleQuery = async (reset = false) => {
// 重置操作
const resetQuery = async () => {
state.queryParams.searchKey = undefined,
state.queryParams.searchKey = undefined;
@if(Model.QueryWhetherList.Count > 0) {
@foreach (var column in Model.QueryWhetherList) {
@:state.queryParams.@(@column.LowerPropertyName) = undefined,
@:state.queryParams.@(@column.LowerPropertyName) = undefined;
}
}
await xGrid.value?.commitProxy('reload');