Commit 4b47f12c by xueli.xue

列表分页参数fix

parent 5cb99b1e
......@@ -10,6 +10,8 @@ $(function() {
var obj = {};
obj.jobGroup = $('#jobGroup').val();
obj.jobName = $('#jobName').val();
obj.start = d.start;
obj.length = d.length;
return obj;
}
},
......
......@@ -38,8 +38,9 @@ $(function() {
data : function ( d ) {
var obj = {};
obj.jobGroup = $('#jobGroup').val();
obj.jobName = $('#jobName').val();
obj.filterTime = $('#filterTime').val();
obj.jobName = $('#jobName').val();
obj.start = d.start;
obj.length = d.length;
return obj;
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment