mirror of https://gitee.com/y_project/RuoYi.git
操作日志查询方式调整
parent
dd9b2cd617
commit
134e559704
|
@ -332,24 +332,10 @@ var table = {
|
|||
}
|
||||
},
|
||||
// 搜索-默认第一个form
|
||||
search: function(formId, tableId, data) {
|
||||
search: function(formId, tableId) {
|
||||
table.set(tableId);
|
||||
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
|
||||
var params = $.common.isEmpty(tableId) ? $("#" + table.options.id).bootstrapTable('getOptions') : $("#" + tableId).bootstrapTable('getOptions');
|
||||
params.queryParams = function(params) {
|
||||
var search = $.common.formToJSON(currentId);
|
||||
if($.common.isNotEmpty(data)){
|
||||
$.each(data, function(key) {
|
||||
search[key] = data[key];
|
||||
});
|
||||
}
|
||||
search.pageSize = params.limit;
|
||||
search.pageNum = params.offset / params.limit + 1;
|
||||
search.searchValue = params.search;
|
||||
search.orderByColumn = params.sort;
|
||||
search.isAsc = params.order;
|
||||
return search;
|
||||
}
|
||||
if($.common.isNotEmpty(tableId)){
|
||||
$("#" + tableId).bootstrapTable('refresh', params);
|
||||
} else{
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
detailUrl: prefix + "/detail/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
queryParams: queryParams,
|
||||
sortName: "operTime",
|
||||
sortOrder: "desc",
|
||||
modalName: "操作日志",
|
||||
|
@ -148,10 +149,14 @@
|
|||
$.table.init(options);
|
||||
});
|
||||
|
||||
function queryParams(params) {
|
||||
var search = $.table.queryParams(params);
|
||||
search.businessTypes = $.common.join($('#businessTypes').selectpicker('val'));
|
||||
return search;
|
||||
}
|
||||
|
||||
function searchPre() {
|
||||
var data = {};
|
||||
data.businessTypes = $.common.join($('#businessTypes').selectpicker('val'));
|
||||
$.table.search('operlog-form', 'bootstrap-table', data);
|
||||
$.table.search('operlog-form', 'bootstrap-table');
|
||||
}
|
||||
|
||||
function resetPre() {
|
||||
|
|
Loading…
Reference in New Issue