curingFN.js 626 B

1234567891011121314151617181920212223
  1. /**
  2. * 筛选-统一请求--刷新用户列表
  3. * @returns
  4. */
  5. function refreshCuringPage(compilation,latestCompilation,sortField,sort){
  6. $.ajax({
  7. cache :false,
  8. type: 'get',
  9. url: '/cloud/curing/ajax/refreshCuringPage?sortField='+sortField+'&sort='+sort+'&compilation='+compilation+'&latestCompilation='+latestCompilation,
  10. dataType: 'json',
  11. success: function(data) {
  12. if (data.status == 1) {
  13. fnStructureCuringUser(data.curingList);
  14. fnPage(data.pageData);
  15. } else {
  16. alert(data.msg);
  17. }
  18. }
  19. })
  20. }