mooho-base-admin-plus 2.10.85 → 2.10.87
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
|
@@ -256,3 +256,5 @@ mooho-base-admin-plus@2.10.82 - 优化弹出选择控件
|
|
|
256
256
|
mooho-base-admin-plus@2.10.83 - 修复上一版本的bug
|
|
257
257
|
mooho-base-admin-plus@2.10.84 - 修复上一版本的bug
|
|
258
258
|
mooho-base-admin-plus@2.10.85 - 修复内嵌表格在打开新页面时无法更新筛选条件的bug
|
|
259
|
+
mooho-base-admin-plus@2.10.86 - 修复弹出选择框的bug
|
|
260
|
+
mooho-base-admin-plus@2.10.87 - 修复分页控件下拉框被挡住的bug
|
|
@@ -30431,7 +30431,10 @@ const comboSelect = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_re
|
|
|
30431
30431
|
page: 1,
|
|
30432
30432
|
per: 999
|
|
30433
30433
|
};
|
|
30434
|
-
a[this.sourceDataCode] = JSON.parse(this.modelValue).join(",")
|
|
30434
|
+
a[this.sourceDataCode] = JSON.parse(this.modelValue).join(",");
|
|
30435
|
+
for (let r in this.param)
|
|
30436
|
+
a[r] = this.param[r];
|
|
30437
|
+
this.loadDataView(this.source).then(async (r) => {
|
|
30435
30438
|
if (r.dataView.isCustom) {
|
|
30436
30439
|
let o = await customModelApi.query(r.dataView.model, a, [this.sourceDataCode, this.sourceDisplayCode]);
|
|
30437
30440
|
o.data.length > 0 && (this.selected = o.data.map((s) => this.parseData(s, this.sourceDisplayCode)).join(","), this.selectedData = o.data);
|
|
@@ -30467,7 +30470,10 @@ const comboSelect = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_re
|
|
|
30467
30470
|
page: 1,
|
|
30468
30471
|
per: 1
|
|
30469
30472
|
};
|
|
30470
|
-
a[this.sourceDataCode] = this.modelValue
|
|
30473
|
+
a[this.sourceDataCode] = this.modelValue;
|
|
30474
|
+
for (let r in this.param)
|
|
30475
|
+
a[r] = this.param[r];
|
|
30476
|
+
this.loadDataView(this.source).then(async (r) => {
|
|
30471
30477
|
if (r.dataView.isCustom) {
|
|
30472
30478
|
let o = await customModelApi.query(r.dataView.model, a);
|
|
30473
30479
|
o.data.length > 0 && (this.selected = this.parseData(o.data[0], this.sourceDisplayCode), this.selectedData = o.data[0]);
|
|
@@ -106283,6 +106289,7 @@ function _sfc_render$n(a, r, o, s, l, c) {
|
|
|
106283
106289
|
"show-elevator": "",
|
|
106284
106290
|
modelValue: l.current,
|
|
106285
106291
|
"onUpdate:modelValue": r[26] || (r[26] = (ce) => l.current = ce),
|
|
106292
|
+
transfer: !0,
|
|
106286
106293
|
"page-size": l.size,
|
|
106287
106294
|
"page-size-opts": o.pageSizeOpts == null ? [10, 20, 50, 100] : o.pageSizeOpts,
|
|
106288
106295
|
total: l.total,
|
|
@@ -106398,7 +106405,7 @@ function _sfc_render$n(a, r, o, s, l, c) {
|
|
|
106398
106405
|
], 2)
|
|
106399
106406
|
], 2);
|
|
106400
106407
|
}
|
|
106401
|
-
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-
|
|
106408
|
+
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-14066509"]]), __vite_glob_1_33 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
106402
106409
|
__proto__: null,
|
|
106403
106410
|
default: viewTable
|
|
106404
106411
|
}, Symbol.toStringTag, { value: "Module" })), _sfc_main$m = {
|