mooho-base-admin-plus 2.10.55 → 2.10.56
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/history.md
CHANGED
|
@@ -41683,7 +41683,7 @@ const tableSetting = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["render", _sfc_r
|
|
|
41683
41683
|
(a.controlType == "Table" || a.controlType == "ExcelTable") && this.$refs["table_" + a.code] ? setTimeout(async () => {
|
|
41684
41684
|
if (a.tableStoreType == "Inner") {
|
|
41685
41685
|
let r = this.parseData(this.data, a.code);
|
|
41686
|
-
r
|
|
41686
|
+
r && this.$refs["table_" + a.code][0].loadData(JSON.parse(r));
|
|
41687
41687
|
} else if (this.data.id) {
|
|
41688
41688
|
let r, o = {}, s = this.$refs["table_" + a.code][0].tableView, l = s.filtering;
|
|
41689
41689
|
(l || "").trim() && (o = JSON.parse(l)), o[a.sourceDataCode] = this.data.id, a.isSourceCustom ? r = await customModelApi.query(a.sourceModel, o, null, s.isReturnSimple ? s : null) : r = await modelApi.query(a.sourceModel, o, null, s.isReturnSimple ? s : null, s.functionName, s.functionType), this.$refs["table_" + a.code][0].loadData(r.data);
|