mooho-base-admin-plus 2.0.13 → 2.0.15
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/package/mooho-base-admin-plus.min.esm.js +21 -11
- package/package/mooho-base-admin-plus.min.js +3 -3
- package/package.json +1 -1
- package/src/components/richEditor/index.vue +22 -9
- package/src/components/view/column-edit.vue +2 -2
- package/src/components/view/filter-edit.vue +2 -2
- package/src/layouts/basic-layout/index.vue +4 -0
|
@@ -30618,13 +30618,13 @@ function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30618
30618
|
]),
|
|
30619
30619
|
_: 1
|
|
30620
30620
|
}),
|
|
30621
|
-
createVNode$1(_component_DropdownItem, { name: "
|
|
30621
|
+
createVNode$1(_component_DropdownItem, { name: "currentUserID" }, {
|
|
30622
30622
|
default: withCtx(() => [
|
|
30623
30623
|
createTextVNode("\u5F53\u524D\u7528\u6237ID")
|
|
30624
30624
|
]),
|
|
30625
30625
|
_: 1
|
|
30626
30626
|
}),
|
|
30627
|
-
createVNode$1(_component_DropdownItem, { name: "
|
|
30627
|
+
createVNode$1(_component_DropdownItem, { name: "currentUser" }, {
|
|
30628
30628
|
default: withCtx(() => [
|
|
30629
30629
|
createTextVNode("\u5F53\u524D\u7528\u6237\u59D3\u540D")
|
|
30630
30630
|
]),
|
|
@@ -34431,13 +34431,23 @@ const _sfc_main$D = {
|
|
|
34431
34431
|
},
|
|
34432
34432
|
$_setUpEditorEvents() {
|
|
34433
34433
|
const editor = this.instance;
|
|
34434
|
-
|
|
34435
|
-
|
|
34436
|
-
|
|
34437
|
-
|
|
34438
|
-
|
|
34439
|
-
|
|
34440
|
-
|
|
34434
|
+
editor.on(
|
|
34435
|
+
"change",
|
|
34436
|
+
debounce((evt) => {
|
|
34437
|
+
const data2 = editor.getData();
|
|
34438
|
+
if (this.modelValue !== data2) {
|
|
34439
|
+
this.$emit("update:modelValue", data2, evt, editor);
|
|
34440
|
+
}
|
|
34441
|
+
}, 80)
|
|
34442
|
+
);
|
|
34443
|
+
editor.on("fileUploadResponse", (evt) => {
|
|
34444
|
+
setTimeout(() => {
|
|
34445
|
+
const data2 = editor.getData();
|
|
34446
|
+
if (this.modelValue !== data2) {
|
|
34447
|
+
this.$emit("update:modelValue", data2, evt, editor);
|
|
34448
|
+
}
|
|
34449
|
+
});
|
|
34450
|
+
});
|
|
34441
34451
|
}
|
|
34442
34452
|
}
|
|
34443
34453
|
};
|
|
@@ -37913,13 +37923,13 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
37913
37923
|
]),
|
|
37914
37924
|
_: 1
|
|
37915
37925
|
}),
|
|
37916
|
-
createVNode$1(_component_DropdownItem, { name: "
|
|
37926
|
+
createVNode$1(_component_DropdownItem, { name: "currentUserID" }, {
|
|
37917
37927
|
default: withCtx(() => [
|
|
37918
37928
|
createTextVNode("\u5F53\u524D\u7528\u6237ID")
|
|
37919
37929
|
]),
|
|
37920
37930
|
_: 1
|
|
37921
37931
|
}),
|
|
37922
|
-
createVNode$1(_component_DropdownItem, { name: "
|
|
37932
|
+
createVNode$1(_component_DropdownItem, { name: "currentUser" }, {
|
|
37923
37933
|
default: withCtx(() => [
|
|
37924
37934
|
createTextVNode("\u5F53\u524D\u7528\u6237\u59D3\u540D")
|
|
37925
37935
|
]),
|