赛亿提成统计系统

init.js 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //显示
  2. function init() {
  3. if (!window.localStorage) {
  4. console.log('浏览器不支持localStorage, 请更换浏览器');
  5. $('#loading').modal('show');
  6. $("#resultLoading").html("初始化失败, 请更换浏览器(如Edge, Chrome)");
  7. } else {
  8. // console.log(window.sessionStorage.getItem("loading"));
  9. if (window.sessionStorage.getItem("loading") == null || window.localStorage.getItem("salesData") == null) {
  10. $('#loading').modal('show');
  11. storageSalesData();
  12. }
  13. }
  14. }
  15. /**
  16. * 获取销售数据表里的数据并存入浏览器不支持localStorage
  17. */
  18. function storageSalesData(refresh = false) {
  19. console.log(refresh);
  20. $.ajax({
  21. url: "/index/index/sales_data",
  22. // async: false, //改为同步方式
  23. type: "post",
  24. data: {},
  25. dataType: 'json',
  26. success: function (res) {
  27. if (res.code == 0) {
  28. window.sessionStorage.setItem('loading', 1);
  29. window.localStorage.setItem('salesData', JSON.stringify(res.data));
  30. console.log(refresh);
  31. if (refresh) {
  32. alert('数据刷新成功');
  33. } else {
  34. setTimeout(function(){ $('#loading').modal('hide'); }, 1000);
  35. }
  36. } else {
  37. console.log('销售数据获取失败');
  38. $("#resultLoading").html("初始化失败, 请稍后重试");
  39. }
  40. },
  41. error: function (res) {
  42. console.log('数据请求失败');
  43. $("#resultLoading").html("初始化失败, 请稍后重试");
  44. }
  45. });
  46. }
  47. // 隐藏
  48. // function close() {
  49. // setTimeout(function(){ $('#loading').modal('hide'); }, 1000);
  50. // }