@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
|
@@ -97,8 +97,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
97
97
|
genType: __props.config.genType,
|
|
98
98
|
parmList: Vue.unref(parsedParams),
|
|
99
99
|
onLoaded: loaded,
|
|
100
|
-
savaData: savaFuncCallback
|
|
101
|
-
|
|
100
|
+
savaData: savaFuncCallback,
|
|
101
|
+
title: __props.config.label
|
|
102
|
+
}, null, 40, ["id", "mode", "busNo", "contNo", "modeNo", "genType", "parmList", "title"]))
|
|
102
103
|
]);
|
|
103
104
|
};
|
|
104
105
|
}
|
|
@@ -98,5 +98,5 @@ const _sfc_main = {
|
|
|
98
98
|
};
|
|
99
99
|
}
|
|
100
100
|
};
|
|
101
|
-
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
101
|
+
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-2040a7cd"]]);
|
|
102
102
|
exports.default = _Layout;
|
|
@@ -519,6 +519,7 @@ async function handleFormSubmit(node, data, fields, context) {
|
|
|
519
519
|
console.error("form-setValue: 缺少 dataSourceId 配置");
|
|
520
520
|
return;
|
|
521
521
|
}
|
|
522
|
+
debugger;
|
|
522
523
|
const formComponent = (_a = context.components) == null ? void 0 : _a.form;
|
|
523
524
|
const validateMethod = (_c = (_b = formComponent == null ? void 0 : formComponent.$) == null ? void 0 : _b.exposed) == null ? void 0 : _c.validate;
|
|
524
525
|
const getFormDataMethod = (_e = (_d = formComponent == null ? void 0 : formComponent.$) == null ? void 0 : _d.exposed) == null ? void 0 : _e.getFormData;
|