12345678910111213141516171819202122232425262728293031323334353637383940 |
- function init() {
- $('#loading').modal('show');
- storageSalesData();
- }
- * 获取销售数据表里的数据并存入浏览器不支持localStorage
- */
- function storageSalesData() {
- if (!window.localStorage) {
- console.log('浏览器不支持localStorage, 请更换浏览器');
- $("#resultLoading").html("初始化失败, 请更换浏览器(如Edge, Chrome)");
- } else {
- $.ajax({
- url: "/index/index/sales_data",
-
- type: "post",
- data: {},
- dataType: 'json',
- success: function (res) {
- if (res.code == 0) {
- window.localStorage.setItem('salesData', JSON.stringify(res.data));
- setTimeout(function(){ $('#loading').modal('hide'); }, 1000);
- } else {
- console.log('销售数据获取失败');
- $("#resultLoading").html("初始化失败, 请稍后重试");
- }
- },
- error: function (res) {
- console.log('数据请求失败');
- $("#resultLoading").html("初始化失败, 请稍后重试");
- }
- });
- }
- }
|