新增百度云、火山引擎

This commit is contained in:
net909
2024-08-24 19:42:31 +08:00
parent 0d1d7d3c67
commit b8addd6d27
13 changed files with 450 additions and 24 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@@ -14,8 +14,16 @@ if (parameter_str !== undefined) {
window.$_GET = [];
}
function searchRefresh(){
$('#listTable').bootstrapTable('refresh');
return false;
}
function searchSubmit(){
$('#listTable').bootstrapTable('selectPage', 1);
if(typeof sidePagination != 'undefined' && sidePagination == 'client'){
$('#listTable').bootstrapTable('refresh');
}else{
$('#listTable').bootstrapTable('selectPage', 1);
}
return false;
}
function searchClear(){
@@ -25,7 +33,11 @@ function searchClear(){
$('#searchToolbar').find('select[name]').each(function() {
$(this).find('option:first').prop("selected", 'selected');
});
$('#listTable').bootstrapTable('selectPage', 1);
if(typeof sidePagination != 'undefined' && sidePagination == 'client'){
$('#listTable').bootstrapTable('refresh');
}else{
$('#listTable').bootstrapTable('selectPage', 1);
}
}
function updateToolbar(){
$('#searchToolbar').find(':input[name]').each(function() {