@fecp/designer 5.6.2 → 5.6.4
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 +9 -6
- package/es/packages/vue/src/components/bus/contract/Contract.vue.mjs +3 -2
- package/es/packages/vue/src/components/layout/Layout.vue.mjs +1 -1
- package/es/packages/vue/src/utils/eventFlow/actionHandlers.mjs +1 -0
- package/lib/designer/package.json.js +1 -1
- package/lib/designer.css +9 -6
- package/lib/packages/vue/src/components/bus/contract/Contract.vue.js +3 -2
- package/lib/packages/vue/src/components/layout/Layout.vue.js +1 -1
- package/lib/packages/vue/src/utils/eventFlow/actionHandlers.js +1 -0
- package/package.json +1 -1
|
@@ -95,8 +95,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
95
95
|
genType: __props.config.genType,
|
|
96
96
|
parmList: unref(parsedParams),
|
|
97
97
|
onLoaded: loaded,
|
|
98
|
-
savaData: savaFuncCallback
|
|
99
|
-
|
|
98
|
+
savaData: savaFuncCallback,
|
|
99
|
+
title: __props.config.label
|
|
100
|
+
}, null, 40, ["id", "mode", "busNo", "contNo", "modeNo", "genType", "parmList", "title"]))
|
|
100
101
|
]);
|
|
101
102
|
};
|
|
102
103
|
}
|
|
@@ -96,7 +96,7 @@ const _sfc_main = {
|
|
|
96
96
|
};
|
|
97
97
|
}
|
|
98
98
|
};
|
|
99
|
-
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
99
|
+
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2040a7cd"]]);
|
|
100
100
|
export {
|
|
101
101
|
_Layout as default
|
|
102
102
|
};
|
|
@@ -517,6 +517,7 @@ async function handleFormSubmit(node, data, fields, context) {
|
|
|
517
517
|
console.error("form-setValue: 缺少 dataSourceId 配置");
|
|
518
518
|
return;
|
|
519
519
|
}
|
|
520
|
+
debugger;
|
|
520
521
|
const formComponent = (_a = context.components) == null ? void 0 : _a.form;
|
|
521
522
|
const validateMethod = (_c = (_b = formComponent == null ? void 0 : formComponent.$) == null ? void 0 : _b.exposed) == null ? void 0 : _c.validate;
|
|
522
523
|
const getFormDataMethod = (_e = (_d = formComponent == null ? void 0 : formComponent.$) == null ? void 0 : _d.exposed) == null ? void 0 : _e.getFormData;
|