venus-design 1.0.78 → 1.0.80

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.
@@ -229,6 +229,9 @@ var VenusForm = /*#__PURE__*/forwardRef(function (props, ref) {
229
229
  if (fieldIds.includes(node.fieldId)) {
230
230
  //@ts-ignore
231
231
  node.nonEditableScene = disabled ? 'EDIT' : null;
232
+ } else {
233
+ //@ts-ignore
234
+ node.nonEditableScene = null;
232
235
  }
233
236
  });
234
237
  return clone;
@@ -242,6 +245,9 @@ var VenusForm = /*#__PURE__*/forwardRef(function (props, ref) {
242
245
  if (!fieldIds.includes(node.fieldId)) {
243
246
  //@ts-ignore
244
247
  node.nonEditableScene = disabled ? 'EDIT' : null;
248
+ } else {
249
+ //@ts-ignore
250
+ node.nonEditableScene = null;
245
251
  }
246
252
  });
247
253
  return clone;
@@ -863,7 +863,7 @@ export var VENUS_FORM_ITEM_TYPE = {
863
863
  //@ts-ignore
864
864
  ,
865
865
  comAttr: column.parameterSource.uploadSecField && {
866
- secId: formData[column.parameterSource.uploadSecField]
866
+ secId: formData[column.parameterSource.uploadSecField].value
867
867
  },
868
868
  rules: [{
869
869
  //是否必填通过其他字段判断时可使用required:{label:string,fieldName:string,value:any}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venus-design",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "venus all compoments",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",