jobsys-explore 4.6.1 → 4.6.3

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.
@@ -0,0 +1,5 @@
1
+ ---
2
+ "jobsys-explore": patch
3
+ ---
4
+
5
+ Adjust vue version
@@ -0,0 +1,5 @@
1
+ ---
2
+ "jobsys-explore": patch
3
+ ---
4
+
5
+ AA
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # jobsys-explore
2
2
 
3
+ ## 4.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Add useFindOptionByValue
8
+ - Upgrade
9
+ - Adjust vue version
10
+ - Downgrade vue
11
+ - AA
12
+ - Add fieldNames support for options
13
+
14
+ ## 4.6.2
15
+
16
+ ### Patch Changes
17
+
18
+ - Add useFindOptionByValue
19
+ - Upgrade
20
+ - Adjust vue version
21
+ - Downgrade vue
22
+ - Add fieldNames support for options
23
+
3
24
  ## 4.5.5
4
25
 
5
26
  ### Patch Changes
@@ -283,7 +283,10 @@ export default defineComponent({
283
283
  } else if (formProvider.afterFetched && isFunction(formProvider.afterFetched)) {
284
284
  res = formProvider.afterFetched(res)
285
285
  }
286
- initFormData(res)
286
+ //有可能出现 isInitializing 未生效 skeleton 还未关闭的情况
287
+ nextTick(() => {
288
+ initFormData(res)
289
+ })
287
290
  })
288
291
  })
289
292
  .finally(() => {