vue2-client 1.19.62 → 1.19.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.19.62",
3
+ "version": "1.19.63",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -1026,9 +1026,7 @@ export default {
1026
1026
  attachment.images = Array.isArray(stepDataRaw.images) ? stepDataRaw.images : []
1027
1027
  attachment.files = Array.isArray(stepDataRaw.files) ? stepDataRaw.files : []
1028
1028
  } else {
1029
- const formItem = stepFormJson.find(item => item.name === historyFormConfig.formLabel)
1030
- const model = formItem?.model
1031
- if (!model) continue
1029
+ const model = historyFormConfig.formLabel
1032
1030
  // 普通字段:从 data 中取值,并按 displayLabel 组织
1033
1031
  const value = stepDataRaw.data ? stepDataRaw.data[model] : undefined
1034
1032
  if (value === undefined || value === null) continue