@vipl520/dk-ui 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -17
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +2 -2
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +11 -17
- package/dist/web-types.json +1 -1
- package/es/file-list-input/src/file-list-input.vue2.mjs +1 -6
- package/es/file-list-input/src/file-list-input.vue2.mjs.map +1 -1
- package/es/table/utils/dkTable.mjs +11 -12
- package/es/table/utils/dkTable.mjs.map +1 -1
- package/lib/file-list-input/src/file-list-input.vue2.js +0 -5
- package/lib/file-list-input/src/file-list-input.vue2.js.map +1 -1
- package/lib/table/utils/dkTable.js +11 -12
- package/lib/table/utils/dkTable.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12930,11 +12930,6 @@
|
|
|
12930
12930
|
class: require$$0.normalizeClass(require$$0.unref(bem)())
|
|
12931
12931
|
},
|
|
12932
12932
|
[
|
|
12933
|
-
require$$0.createTextVNode(
|
|
12934
|
-
require$$0.toDisplayString(_ctx.limit) + " ",
|
|
12935
|
-
1
|
|
12936
|
-
/* TEXT */
|
|
12937
|
-
),
|
|
12938
12933
|
require$$0.createElementVNode("div", _hoisted_1$J, [
|
|
12939
12934
|
require$$0.createElementVNode("ul", null, [
|
|
12940
12935
|
(require$$0.openBlock(true), require$$0.createElementBlock(
|
|
@@ -28417,19 +28412,18 @@
|
|
|
28417
28412
|
this.runAfter("getTable", { res: cachedTableData });
|
|
28418
28413
|
return Promise.resolve(cachedTableData);
|
|
28419
28414
|
}
|
|
28420
|
-
} else {
|
|
28421
|
-
return this.api.table().then((res) => {
|
|
28422
|
-
this.table.column = res.data.column;
|
|
28423
|
-
if (res.data.pk) {
|
|
28424
|
-
this.table.pk = res.data.pk;
|
|
28425
|
-
}
|
|
28426
|
-
storage.set(this.api.actionUrl.get("table") + "_table", JSON.stringify(res.data));
|
|
28427
|
-
this.runAfter("getTable", { res });
|
|
28428
|
-
}).finally(() => {
|
|
28429
|
-
this.table.columnLoading = false;
|
|
28430
|
-
}).catch(() => {
|
|
28431
|
-
});
|
|
28432
28415
|
}
|
|
28416
|
+
return this.api.table().then((res) => {
|
|
28417
|
+
this.table.column = res.data.column;
|
|
28418
|
+
if (res.data.pk) {
|
|
28419
|
+
this.table.pk = res.data.pk;
|
|
28420
|
+
}
|
|
28421
|
+
storage.set(this.api.actionUrl.get("table") + "_table", JSON.stringify(res.data));
|
|
28422
|
+
this.runAfter("getTable", { res });
|
|
28423
|
+
}).finally(() => {
|
|
28424
|
+
this.table.columnLoading = false;
|
|
28425
|
+
}).catch(() => {
|
|
28426
|
+
});
|
|
28433
28427
|
};
|
|
28434
28428
|
/**
|
|
28435
28429
|
* 显示回收站
|