mooho-base-admin-plus 2.10.24 → 2.10.26
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 +2 -0
- package/package/mooho-base-admin-plus.min.esm.js +4 -4
- package/package/mooho-base-admin-plus.min.js +3 -3
- package/package/style.css +1 -1
- package/package.json +1 -1
- package/src/components/view/mixin.js +1 -1
- package/src/components/view/view-chart.vue +1 -1
- package/src/components/view/view-table.vue +1 -1
package/history.md
CHANGED
|
@@ -195,3 +195,5 @@ mooho-base-admin-plus@2.10.21 - 请求头增加后端请求主机地址,避免
|
|
|
195
195
|
mooho-base-admin-plus@2.10.22 - 修复上一版本的bug
|
|
196
196
|
mooho-base-admin-plus@2.10.23 - 修复上一版本的bug
|
|
197
197
|
mooho-base-admin-plus@2.10.24 - 修复onBlur事件参数错误
|
|
198
|
+
mooho-base-admin-plus@2.10.25 - 修复默认值的bug
|
|
199
|
+
mooho-base-admin-plus@2.10.26 - 解决视图默认筛选条件和筛选项冲突的bug,需后端Mooho.Base@2.10.9
|
|
@@ -29436,7 +29436,7 @@ const processPage = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_re
|
|
|
29436
29436
|
let r = {};
|
|
29437
29437
|
this.tableView.filtering && (r = JSON.parse(this.tableView.filtering));
|
|
29438
29438
|
for (let o in this.filter)
|
|
29439
|
-
r[o] = this.filter[o];
|
|
29439
|
+
r["v_" + o] = this.filter[o];
|
|
29440
29440
|
for (let o in a)
|
|
29441
29441
|
r[o] = a[o];
|
|
29442
29442
|
if (this.tableView.sorting) {
|
|
@@ -33480,7 +33480,7 @@ const columnEdit = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["render", _sfc_ren
|
|
|
33480
33480
|
(s.controlType == "Check" || s.controlType == "Switch") && s.dataType === "Boolean" ? a(o, s, !1) : a(o, s, null);
|
|
33481
33481
|
}), this.defaultData)
|
|
33482
33482
|
for (let s in this.defaultData)
|
|
33483
|
-
a(o, s, this.defaultData[s]);
|
|
33483
|
+
a(o, { code: s }, this.defaultData[s]);
|
|
33484
33484
|
return o;
|
|
33485
33485
|
}
|
|
33486
33486
|
}
|
|
@@ -43104,7 +43104,7 @@ const _sfc_main$n = {
|
|
|
43104
43104
|
if (this.tableView.filtering) {
|
|
43105
43105
|
let l = JSON.parse(this.tableView.filtering);
|
|
43106
43106
|
for (let u in l)
|
|
43107
|
-
this.viewFilter[u] = l[u];
|
|
43107
|
+
this.viewFilter["v_" + u] = l[u];
|
|
43108
43108
|
} else
|
|
43109
43109
|
this.viewFilter = {};
|
|
43110
43110
|
this.tableView.keywordEnable && (this.tableView.keywordColumn || "").trim() ? this.viewFilter.keywordColumns = this.tableView.keywordColumn : this.viewFilter.keywordColumns = null, this.selectedData = [], this.inited = !0, this.initTrigger(), setTimeout(() => {
|
|
@@ -44645,7 +44645,7 @@ function _sfc_render$n(a, r, o, s, l, u) {
|
|
|
44645
44645
|
], 2)
|
|
44646
44646
|
], 2);
|
|
44647
44647
|
}
|
|
44648
|
-
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-
|
|
44648
|
+
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-5d33bd43"]]), __vite_glob_1_32 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
44649
44649
|
__proto__: null,
|
|
44650
44650
|
default: viewTable
|
|
44651
44651
|
}, Symbol.toStringTag, { value: "Module" })), _sfc_main$m = {
|