szld-libs 0.4.43 → 0.4.44

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.
@@ -20,6 +20,7 @@ export declare const handleSubmitForm: (originalData: {
20
20
  }, allValues: any) => {
21
21
  updatedData: any;
22
22
  uploadedFiles: any[];
23
+ onlyNumber: string;
23
24
  };
24
25
  /**
25
26
  * 处理基础属性数组
@@ -180,7 +180,8 @@ const handleSubmitForm = (originalData, allValues) => {
180
180
  }
181
181
  return {
182
182
  updatedData: isListToObj ? handleAttrListToObj(updatedData.attr_list || []) : updatedData,
183
- uploadedFiles
183
+ uploadedFiles,
184
+ onlyNumber: onlyNumber || guid || ""
184
185
  };
185
186
  };
186
187
  const processChildren = (items, extraAttrs, notDisplay) => {
@@ -20,6 +20,7 @@ export declare const handleSubmitForm: (originalData: {
20
20
  }, allValues: any) => {
21
21
  updatedData: any;
22
22
  uploadedFiles: any[];
23
+ onlyNumber: string;
23
24
  };
24
25
  /**
25
26
  * 处理基础属性数组
@@ -182,7 +182,8 @@ const handleSubmitForm = (originalData, allValues) => {
182
182
  }
183
183
  return {
184
184
  updatedData: isListToObj ? handleAttrListToObj(updatedData.attr_list || []) : updatedData,
185
- uploadedFiles
185
+ uploadedFiles,
186
+ onlyNumber: onlyNumber || guid || ""
186
187
  };
187
188
  };
188
189
  const processChildren = (items, extraAttrs, notDisplay) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "szld-libs",
3
3
  "private": false,
4
- "version": "0.4.43",
4
+ "version": "0.4.44",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",