@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.
- package/dist/vue3-lo-form.common.js +7 -7
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.umd.js +7 -7
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/core/FormApi.js +72 -31
- package/src/core/FormApi.js.map +1 -1
- package/src/core/FormApi.ts +5 -6
- package/src/services/date-format.service.js +76 -0
- package/src/services/date-format.service.js.map +1 -0
package/dist/vue3-lo-form.umd.js
CHANGED
|
@@ -85954,7 +85954,13 @@ class FormApi_FormApi {
|
|
|
85954
85954
|
continue;
|
|
85955
85955
|
}
|
|
85956
85956
|
|
|
85957
|
-
|
|
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
|
|