Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliang-wt committed Jun 15, 2023
2 parents c1985f5 + fd0fe14 commit 2a96576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const state = reactive({
IsPublic: null,
IsInside: true,
},
SelectedModule: [],
SelectedModule: null,
SelectedActionIDs: [] as any[],
SelectedRolesIds: []
},
Expand Down
4 changes: 2 additions & 2 deletions src/WalkingTec.Mvvm.Mvc/framework_layui.js
Original file line number Diff line number Diff line change
Expand Up @@ -932,13 +932,13 @@ window.ff = {
}
var tempwhere = {};
$.extend(tempwhere, defaultcondition);
for (let item in tempwhere) {
$.extend(tempwhere, formData);
for (let item in tempwhere) {
if (item.startsWith("Searcher.") == false) {
tempwhere["Searcher." + item] = tempwhere[item];
}
}

$.extend(tempwhere, formData);
var form = $('<form method="POST" action="' + url + '">');
for (var attr in tempwhere) {
if (tempwhere[attr] != null) {
Expand Down

0 comments on commit 2a96576

Please sign in to comment.