@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
|
@@ -103,6 +103,10 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
103
103
|
class: {
|
|
104
104
|
type: String,
|
|
105
105
|
default: ""
|
|
106
|
+
},
|
|
107
|
+
showGoBack: {
|
|
108
|
+
type: Boolean,
|
|
109
|
+
default: true
|
|
106
110
|
}
|
|
107
111
|
},
|
|
108
112
|
emits: [
|
|
@@ -1186,7 +1190,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
1186
1190
|
}, {
|
|
1187
1191
|
default: Vue.withCtx(() => [
|
|
1188
1192
|
Vue.createVNode(Vue.unref(index$5.header), {
|
|
1189
|
-
showBack: !__props.isSubForm && !__props.isDialog,
|
|
1193
|
+
showBack: !__props.isSubForm && !__props.isDialog && __props.showGoBack,
|
|
1190
1194
|
isApproval: __props.isApproval,
|
|
1191
1195
|
pageHeaderConfig: localConfig.value.pageHeaderConfig,
|
|
1192
1196
|
onActionClick: handleActionClick
|
|
@@ -1291,5 +1295,5 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
1291
1295
|
};
|
|
1292
1296
|
}
|
|
1293
1297
|
});
|
|
1294
|
-
const _Form = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
1298
|
+
const _Form = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-f15a223c"]]);
|
|
1295
1299
|
exports.default = _Form;
|
|
@@ -26,10 +26,6 @@ const _sfc_main = {
|
|
|
26
26
|
initFormData: {
|
|
27
27
|
type: Object,
|
|
28
28
|
default: {}
|
|
29
|
-
},
|
|
30
|
-
isDialog: {
|
|
31
|
-
type: Boolean,
|
|
32
|
-
default: false
|
|
33
29
|
}
|
|
34
30
|
},
|
|
35
31
|
emits: ["loaded"],
|
|
@@ -73,8 +69,8 @@ const _sfc_main = {
|
|
|
73
69
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => Vue.isRef(formData) ? formData.value = $event : null),
|
|
74
70
|
onLoaded: loaded,
|
|
75
71
|
initFormMode: __props.initFormMode,
|
|
76
|
-
|
|
77
|
-
}, null, 8, ["templateKey", "modelValue", "initFormMode"
|
|
72
|
+
showGoBack: false
|
|
73
|
+
}, null, 8, ["templateKey", "modelValue", "initFormMode"])
|
|
78
74
|
])
|
|
79
75
|
]),
|
|
80
76
|
_: 1
|
|
@@ -98,5 +94,5 @@ const _sfc_main = {
|
|
|
98
94
|
};
|
|
99
95
|
}
|
|
100
96
|
};
|
|
101
|
-
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
97
|
+
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-74c53b72"]]);
|
|
102
98
|
exports.default = _Layout;
|