jobsys-explore 4.0.16 → 4.0.17
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/small-fishes-sparkle.md +5 -0
- package/CHANGELOG.md +21 -0
- package/components/form/ExAddress.jsx +2 -2
- package/components/form/ExCascader.jsx +1 -1
- package/dist/jobsys-explore.cjs +1 -1
- package/dist/jobsys-explore.cjs.map +1 -1
- package/dist/jobsys-explore.js +3 -3
- package/dist/jobsys-explore.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# jobsys-explore
|
|
2
2
|
|
|
3
|
+
## 4.0.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- address
|
|
8
|
+
- y
|
|
9
|
+
- add exPros parameter
|
|
10
|
+
- option fetch data only once
|
|
11
|
+
- add form reset
|
|
12
|
+
- fixed
|
|
13
|
+
- add sm2 encrypt
|
|
14
|
+
- form expose fetchItem method
|
|
15
|
+
- fixed address modelValue
|
|
16
|
+
- fixed textInValue
|
|
17
|
+
- fixed textInValue
|
|
18
|
+
- add key_cn
|
|
19
|
+
- search watch model value
|
|
20
|
+
- address
|
|
21
|
+
- cascader
|
|
22
|
+
- e
|
|
23
|
+
|
|
3
24
|
## 4.0.16
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -80,8 +80,8 @@ export default defineComponent({
|
|
|
80
80
|
const displayTextType = props.displayTextType || defaultDisplayTextType
|
|
81
81
|
|
|
82
82
|
//textInValue状态下的初始值
|
|
83
|
-
if (props.textInValue && props.modelValue && props.modelValue.length === 1
|
|
84
|
-
return last(props.modelValue)
|
|
83
|
+
if (props.textInValue && props.modelValue && props.modelValue.length === 1) {
|
|
84
|
+
return last(props.modelValue)[textKey]
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
//反向赋值
|
|
@@ -113,7 +113,7 @@ export default defineComponent({
|
|
|
113
113
|
return ""
|
|
114
114
|
}
|
|
115
115
|
//textInValue状态下的初始值
|
|
116
|
-
if (props.textInValue && props.modelValue && props.modelValue.length === 1
|
|
116
|
+
if (props.textInValue && props.modelValue && props.modelValue.length === 1) {
|
|
117
117
|
return last(props.modelValue).text
|
|
118
118
|
}
|
|
119
119
|
|