@fecp/designer 5.5.108 → 5.5.109
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/es/designer/package.json.mjs +1 -1
- package/es/designer.css +42 -42
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +6 -2
- package/es/packages/vue/src/components/layout/Layout.vue.mjs +3 -7
- package/lib/designer/package.json.js +1 -1
- package/lib/designer.css +42 -42
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +6 -2
- package/lib/packages/vue/src/components/layout/Layout.vue.js +3 -7
- package/package.json +1 -1
|
@@ -101,6 +101,10 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
101
101
|
class: {
|
|
102
102
|
type: String,
|
|
103
103
|
default: ""
|
|
104
|
+
},
|
|
105
|
+
showGoBack: {
|
|
106
|
+
type: Boolean,
|
|
107
|
+
default: true
|
|
104
108
|
}
|
|
105
109
|
},
|
|
106
110
|
emits: [
|
|
@@ -1184,7 +1188,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
1184
1188
|
}, {
|
|
1185
1189
|
default: withCtx(() => [
|
|
1186
1190
|
createVNode(unref(header), {
|
|
1187
|
-
showBack: !__props.isSubForm && !__props.isDialog,
|
|
1191
|
+
showBack: !__props.isSubForm && !__props.isDialog && __props.showGoBack,
|
|
1188
1192
|
isApproval: __props.isApproval,
|
|
1189
1193
|
pageHeaderConfig: localConfig.value.pageHeaderConfig,
|
|
1190
1194
|
onActionClick: handleActionClick
|
|
@@ -1289,7 +1293,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
1289
1293
|
};
|
|
1290
1294
|
}
|
|
1291
1295
|
});
|
|
1292
|
-
const _Form = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
1296
|
+
const _Form = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f15a223c"]]);
|
|
1293
1297
|
export {
|
|
1294
1298
|
_Form as default
|
|
1295
1299
|
};
|
|
@@ -24,10 +24,6 @@ const _sfc_main = {
|
|
|
24
24
|
initFormData: {
|
|
25
25
|
type: Object,
|
|
26
26
|
default: {}
|
|
27
|
-
},
|
|
28
|
-
isDialog: {
|
|
29
|
-
type: Boolean,
|
|
30
|
-
default: false
|
|
31
27
|
}
|
|
32
28
|
},
|
|
33
29
|
emits: ["loaded"],
|
|
@@ -71,8 +67,8 @@ const _sfc_main = {
|
|
|
71
67
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(formData) ? formData.value = $event : null),
|
|
72
68
|
onLoaded: loaded,
|
|
73
69
|
initFormMode: __props.initFormMode,
|
|
74
|
-
|
|
75
|
-
}, null, 8, ["templateKey", "modelValue", "initFormMode"
|
|
70
|
+
showGoBack: false
|
|
71
|
+
}, null, 8, ["templateKey", "modelValue", "initFormMode"])
|
|
76
72
|
])
|
|
77
73
|
]),
|
|
78
74
|
_: 1
|
|
@@ -96,7 +92,7 @@ const _sfc_main = {
|
|
|
96
92
|
};
|
|
97
93
|
}
|
|
98
94
|
};
|
|
99
|
-
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
95
|
+
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-74c53b72"]]);
|
|
100
96
|
export {
|
|
101
97
|
_Layout as default
|
|
102
98
|
};
|