@vipl520/dk-ui 1.0.25 → 1.0.26

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.js CHANGED
@@ -366,7 +366,6 @@
366
366
  return config2;
367
367
  },
368
368
  (error) => {
369
- console.log("error", error);
370
369
  return Promise.reject(error);
371
370
  }
372
371
  );
@@ -28113,6 +28112,7 @@
28113
28112
  this.runAfter("getIndex", { res });
28114
28113
  }).finally(() => {
28115
28114
  this.table.loading = false;
28115
+ }).catch(() => {
28116
28116
  });
28117
28117
  };
28118
28118
  getTable = (cache = false) => {
@@ -28120,7 +28120,7 @@
28120
28120
  return;
28121
28121
  this.table.columnLoading = true;
28122
28122
  if (cache) {
28123
- const cachedData = storage.get(this.url + "_table");
28123
+ const cachedData = storage.get(this.api.actionUrl.get("table") + "_table");
28124
28124
  if (cachedData) {
28125
28125
  const cachedTableData = JSON.parse(cachedData);
28126
28126
  this.table.column = cachedTableData.column;
@@ -28134,10 +28134,11 @@
28134
28134
  if (res.data.pk) {
28135
28135
  this.table.pk = res.data.pk;
28136
28136
  }
28137
- storage.set(this.url + "_table", JSON.stringify(res.data));
28137
+ storage.set(this.api.actionUrl.get("table") + "_table", JSON.stringify(res.data));
28138
28138
  this.runAfter("getTable", { res });
28139
28139
  }).finally(() => {
28140
28140
  this.table.columnLoading = false;
28141
+ }).catch(() => {
28141
28142
  });
28142
28143
  }
28143
28144
  };