mooho-base-admin-plus 2.10.55 → 2.10.57
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
|
@@ -226,3 +226,5 @@ mooho-base-admin-plus@2.10.52 - 修复上一版本的bug
|
|
|
226
226
|
mooho-base-admin-plus@2.10.53 - 修复上一版本的bug
|
|
227
227
|
mooho-base-admin-plus@2.10.54 - 修复上一版本的bug
|
|
228
228
|
mooho-base-admin-plus@2.10.55 - 修复上一版本的bug
|
|
229
|
+
mooho-base-admin-plus@2.10.56 - 修复上一版本的bug
|
|
230
|
+
mooho-base-admin-plus@2.10.57 - 修复上一版本的bug
|
|
@@ -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);
|