mooho-base-admin-plus 0.4.33 → 0.4.35
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import require$$0$1, { watch, reactive, shallowRef, unref, computed, nextTick, defineComponent, inject, h, provide, ref, openBlock, createElementBlock, createElementVNode, normalizeStyle as normalizeStyle$1, toDisplayString as toDisplayString$1, withDirectives, vModelText, pushScopeId, popScopeId, resolveComponent, resolveDirective, createVNode as createVNode$1, withCtx, Fragment, renderList, createBlock, createTextVNode, createCommentVNode, renderSlot, mergeProps, resolveDynamicComponent, withModifiers, normalizeProps, guardReactiveProps, vShow, Transition, normalizeClass, KeepAlive } from "vue";
|
|
1
|
+
import require$$0$1, { watch, reactive, shallowRef, unref, computed, nextTick, defineComponent, inject, h, provide, ref, openBlock, createElementBlock, createElementVNode, normalizeStyle as normalizeStyle$1, toDisplayString as toDisplayString$1, withDirectives, vModelText, pushScopeId, popScopeId, resolveComponent, resolveDirective, createVNode as createVNode$1, withCtx, Fragment, renderList, createBlock, createTextVNode, createCommentVNode, renderSlot, mergeProps, markRaw, resolveDynamicComponent, withModifiers, normalizeProps, guardReactiveProps, vShow, Transition, normalizeClass, KeepAlive } from "vue";
|
|
2
2
|
import ViewUIPlus from "view-ui-plus";
|
|
3
3
|
function getDevtoolsGlobalHook() {
|
|
4
4
|
return getTarget$1().__VUE_DEVTOOLS_GLOBAL_HOOK__;
|
|
@@ -20923,7 +20923,7 @@ const _sfc_main$1k = {
|
|
|
20923
20923
|
this.$router.push({ path: this.task.activityInst.activity.routerPath, query: { taskID: row.id } });
|
|
20924
20924
|
return;
|
|
20925
20925
|
} else if (this.task.activityInst.activity.pageMode == "Component") {
|
|
20926
|
-
this.customComponent = this.$pages[this.task.activityInst.activity.templateUrl];
|
|
20926
|
+
this.customComponent = markRaw(this.$pages[this.task.activityInst.activity.templateUrl]);
|
|
20927
20927
|
this.isCustom = true;
|
|
20928
20928
|
setTimeout(async () => {
|
|
20929
20929
|
if (applicationType2.isCustom) {
|
|
@@ -20966,7 +20966,7 @@ const _sfc_main$1k = {
|
|
|
20966
20966
|
this.$router.push({ path: applicationType2.routerPath, query: { taskID: row.id } });
|
|
20967
20967
|
return;
|
|
20968
20968
|
} else if (applicationType2.pageMode == "Component") {
|
|
20969
|
-
this.customComponent = this.$pages[applicationType2.templateUrl];
|
|
20969
|
+
this.customComponent = markRaw(this.$pages[applicationType2.templateUrl]);
|
|
20970
20970
|
this.isCustom = true;
|
|
20971
20971
|
setTimeout(async () => {
|
|
20972
20972
|
if (applicationType2.isCustom) {
|
|
@@ -32617,6 +32617,9 @@ const _sfc_main$w = {
|
|
|
32617
32617
|
},
|
|
32618
32618
|
getFullData() {
|
|
32619
32619
|
let data2 = this.copy(this.data);
|
|
32620
|
+
if (!data2) {
|
|
32621
|
+
return null;
|
|
32622
|
+
}
|
|
32620
32623
|
data2.tableData = [];
|
|
32621
32624
|
for (let column of this.columns) {
|
|
32622
32625
|
if (column.controlType == "Table" && !column.isReadonly && column.isShow) {
|