1234567891011121314151617181920212223 |
- /**
- * 筛选-统一请求--刷新用户列表
- * @returns
- */
- function refreshCuringPage(compilation,latestCompilation,sortField,sort){
-
-
-
- $.ajax({
- cache :false,
- type: 'get',
- url: '/cloud/curing/ajax/refreshCuringPage?sortField='+sortField+'&sort='+sort+'&compilation='+compilation+'&latestCompilation='+latestCompilation,
- dataType: 'json',
- success: function(data) {
- if (data.status == 1) {
- fnStructureCuringUser(data.curingList);
- fnPage(data.pageData);
- } else {
- alert(data.msg);
- }
- }
- })
- }
|