@byteluck-fe/model-driven-upgrade 2.8.1-alpha.12-h → 2.8.1-alpha.12-i
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/dist/esm/upgrade/v3_1.js +5 -0
- package/dist/index.umd.js +1 -1
- package/package.json +3 -3
package/dist/esm/upgrade/v3_1.js
CHANGED
|
@@ -152,6 +152,11 @@ function conversion(schema, payload) {
|
|
|
152
152
|
}
|
|
153
153
|
});
|
|
154
154
|
}
|
|
155
|
+
if (schema.type === CONTROL_TYPE.CALC) {
|
|
156
|
+
if (schema.props.calcOnMounted === undefined) {
|
|
157
|
+
schema.props.calcOnMounted = true;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
155
160
|
//将操作项按钮的完成时事件转成点击时事件
|
|
156
161
|
conversionListener(payload);
|
|
157
162
|
return schema;
|