赛亿提成统计系统

init.js 1.3KB

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