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.
- package/.changeset/clever-panthers-fail.md +5 -0
- package/CHANGELOG.md +23 -0
- package/components/form/ExForm.jsx +6 -0
- package/dist/jobsys-explore.cjs +1 -1
- package/dist/jobsys-explore.cjs.map +1 -1
- package/dist/jobsys-explore.js +30 -30
- package/dist/jobsys-explore.js.map +1 -1
- package/package.json +1 -1
- package/playground/TestForm.vue +2 -3
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
|
}
|