@dhccmobile/vue3-lo-form 0.1.13 → 0.1.14

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.
@@ -85954,7 +85954,13 @@ class FormApi_FormApi {
85954
85954
  continue;
85955
85955
  }
85956
85956
 
85957
- if (objectA[key] !== objectB[key]) {
85957
+ const control = this.getControl(key);
85958
+
85959
+ if (!control) {
85960
+ continue;
85961
+ }
85962
+
85963
+ if (control.code !== constants_enum["g" /* FormFieldType */].Custom.code && objectA[key] + "" !== objectB[key] + "") {
85958
85964
  const oldValue = objectA[key]; // 记录新值
85959
85965
 
85960
85966
  const newValue = objectB[key]; // 记录旧值
@@ -85963,12 +85969,6 @@ class FormApi_FormApi {
85963
85969
 
85964
85970
  fieldInfo.field_cd = key; //字段英文
85965
85971
 
85966
- const control = this.getControl(key);
85967
-
85968
- if (!control) {
85969
- continue;
85970
- }
85971
-
85972
85972
  const name = control.controlAttr.formFieldDescribe;
85973
85973
  fieldInfo.field_nm = name; //字段中文
85974
85974