Skip to content

Commit

Permalink
!15 update public/static/admin/js/builder/table.js.
Browse files Browse the repository at this point in the history
Merge pull request !15 from 有色白水/N/A
  • Loading branch information
黑白蓝 authored and gitee-org committed May 27, 2022
2 parents 5fb4469 + e163acd commit 6934064
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion public/static/admin/js/builder/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,9 @@ jQuery(document).ready(function() {
str.push(e.name + '=' + e.value)
});
str = str.join('|');
location.href = $(this).attr('action')+'?_s='+str+'&_o='+op;
var search_url = $(this).attr('action');
var separator = search_url.indexOf("?")==-1?"?":"&";
location.href = $(this).attr('action')+separator+'_s='+str+'&_o='+op;
return false;
});
});

0 comments on commit 6934064

Please sign in to comment.