jobsys-explore 4.0.19 → 4.0.20

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
+ form loading status
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # jobsys-explore
2
2
 
3
+ ## 4.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - address
8
+ - form loading status
9
+ - y
10
+ - add exPros parameter
11
+ - select add textInValue
12
+ - option fetch data only once
13
+ - add form reset
14
+ - fixed
15
+ - add sm2 encrypt
16
+ - form expose fetchItem method
17
+ - fixed address modelValue
18
+ - fixed textInValue
19
+ - fixed textInValue
20
+ - add key_cn
21
+ - search watch model value
22
+ - address
23
+ - cascader
24
+ - e
25
+
3
26
  ## 4.0.19
4
27
 
5
28
  ### Patch Changes
@@ -386,6 +386,9 @@ export default defineComponent({
386
386
  )
387
387
 
388
388
  const footerElem = () => {
389
+ if (state.isInitializing) {
390
+ return null
391
+ }
389
392
  if (slots.footer) {
390
393
  return <div class={"ex-form__footer"}>{slots.footer()}</div>
391
394
  }
@@ -393,6 +396,9 @@ export default defineComponent({
393
396
  }
394
397
 
395
398
  const submitBtnElem = () => {
399
+ if (state.isInitializing) {
400
+ return null
401
+ }
396
402
  if (props.readonly) {
397
403
  return null
398
404
  }