模版 重置操作

This commit is contained in:
Master 2024-07-05 11:54:21 +08:00
parent 684aedb192
commit d35b12f8a9

View File

@ -292,8 +292,11 @@ const fetchData = async (tableParams: any) => {
// 重置操作 // 重置操作
const resetQuery = () => { const resetQuery = () => {
state.queryParams.title = undefined; @if(Model.QueryWhetherList.Count > 0) {
state.queryParams.type = undefined; @foreach (var column in Model.QueryWhetherList) {
@:@(@column.LowerPropertyName): undefined,
}
}
handleQuery(true); handleQuery(true);
}; };