mooho-base-admin-plus 2.10.97 → 2.10.99
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 +3 -1
- package/package/mooho-base-admin-plus.min.esm.js +6 -4
- package/package/mooho-base-admin-plus.min.js +2 -2
- package/package/style.css +1 -1
- package/package.json +1 -1
- package/src/components/view/table-filter.vue +1 -1
- package/src/components/view/view-form.vue +1 -1
- package/src/components/view/view-table-excel.vue +2 -0
- package/src/components/view/view-table.vue +1 -1
package/history.md
CHANGED
|
@@ -267,4 +267,6 @@ mooho-base-admin-plus@2.10.93 - 前端改为CK4,允许使用本地脚本
|
|
|
267
267
|
mooho-base-admin-plus@2.10.94 - 修复Excel表格初始化过程中加载数据失败的bug
|
|
268
268
|
mooho-base-admin-plus@2.10.95 - 修复Excel表格报错的bug
|
|
269
269
|
mooho-base-admin-plus@2.10.96 - 增加modal-table-excel组件
|
|
270
|
-
mooho-base-admin-plus@2.10.97 - 选择框固定选项支持bool类型
|
|
270
|
+
mooho-base-admin-plus@2.10.97 - 选择框固定选项支持bool类型
|
|
271
|
+
mooho-base-admin-plus@2.10.98 - 修复上一版本的bug
|
|
272
|
+
mooho-base-admin-plus@2.10.99 - excel-table取消自动高度
|
|
@@ -30405,7 +30405,7 @@ const modalTable = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_ren
|
|
|
30405
30405
|
}) : a.dataType == "Decimal" || a.dataType == "Float" || a.dataType == "Double" ? a.dataSource.push({
|
|
30406
30406
|
id: parseFloat(o),
|
|
30407
30407
|
name: s
|
|
30408
|
-
}) : a.dataType == "Boolean" &&
|
|
30408
|
+
}) : a.dataType == "Boolean" && a.controlType != "Select" ? a.dataSource.push({
|
|
30409
30409
|
id: o.toUpperCase() == "TRUE",
|
|
30410
30410
|
name: s
|
|
30411
30411
|
}) : a.dataSource.push({
|
|
@@ -31849,7 +31849,7 @@ const tableSetting = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["render", _sfc_r
|
|
|
31849
31849
|
}) : a.dataType == "Decimal" || a.dataType == "Float" || a.dataType == "Double" ? a.dataSource.push({
|
|
31850
31850
|
id: parseFloat(o),
|
|
31851
31851
|
name: s
|
|
31852
|
-
}) : a.dataType == "Boolean" &&
|
|
31852
|
+
}) : a.dataType == "Boolean" && a.controlType != "Select" ? a.dataSource.push({
|
|
31853
31853
|
id: o.toUpperCase() == "TRUE",
|
|
31854
31854
|
name: s
|
|
31855
31855
|
}) : a.dataSource.push({
|
|
@@ -94829,6 +94829,8 @@ const _sfc_main$o = {
|
|
|
94829
94829
|
colHeaders: !0,
|
|
94830
94830
|
height: "auto",
|
|
94831
94831
|
// columns: [],
|
|
94832
|
+
// 固定行高,避免含换行文本时横向滚动触发自动重算导致表格整体高度变化
|
|
94833
|
+
autoRowSize: !1,
|
|
94832
94834
|
autoWrapCol: !0,
|
|
94833
94835
|
autoWrapRow: !0,
|
|
94834
94836
|
manualColumnResize: !0,
|
|
@@ -96039,7 +96041,7 @@ const _sfc_main$n = {
|
|
|
96039
96041
|
}) : a.dataType == "Decimal" || a.dataType == "Float" || a.dataType == "Double" ? r._dataSource[a.code].push({
|
|
96040
96042
|
id: parseFloat(s),
|
|
96041
96043
|
name: l
|
|
96042
|
-
}) : a.dataType == "Boolean" &&
|
|
96044
|
+
}) : a.dataType == "Boolean" && a.controlType != "Select" ? r._dataSource[a.code].push({
|
|
96043
96045
|
id: s.toUpperCase() == "TRUE",
|
|
96044
96046
|
name: l
|
|
96045
96047
|
}) : r._dataSource[a.code].push({
|
|
@@ -97293,7 +97295,7 @@ function _sfc_render$n(a, r, o, s, l, u) {
|
|
|
97293
97295
|
], 2)
|
|
97294
97296
|
], 2);
|
|
97295
97297
|
}
|
|
97296
|
-
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-
|
|
97298
|
+
const viewTable = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$n], ["__scopeId", "data-v-008a40bc"]]), __vite_glob_1_34 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
97297
97299
|
__proto__: null,
|
|
97298
97300
|
default: viewTable
|
|
97299
97301
|
}, Symbol.toStringTag, { value: "Module" })), _sfc_main$m = {
|