jobsys-explore 4.2.11 → 4.2.13

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 help
@@ -0,0 +1,5 @@
1
+ ---
2
+ "jobsys-explore": patch
3
+ ---
4
+
5
+ upload format
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # jobsys-explore
2
2
 
3
+ ## 4.2.13
4
+
5
+ ### Patch Changes
6
+
7
+ - page
8
+ - select
9
+ - pagination add pullrefresh
10
+ - form help
11
+ - d
12
+ - fixed format date
13
+ - page
14
+ - useFormFormat
15
+ - rate default null
16
+ - use Dayjs
17
+ - select
18
+ - upload format
19
+ - page
20
+
21
+ ## 4.2.12
22
+
23
+ ### Patch Changes
24
+
25
+ - page
26
+ - select
27
+ - pagination add pullrefresh
28
+ - form help
29
+ - d
30
+ - fixed format date
31
+ - page
32
+ - useFormFormat
33
+ - rate default null
34
+ - use Dayjs
35
+ - select
36
+ - page
37
+
3
38
  ## 4.2.11
4
39
 
5
40
  ### Patch Changes
@@ -54,7 +54,7 @@ export default defineComponent({
54
54
  /****************** render **********************/
55
55
 
56
56
  const helpElem = () => {
57
- if (props.append) {
57
+ if (props.help) {
58
58
  return (
59
59
  <Popover v-model:show={state.showHelp} theme={"dark"} placement={"bottom-start"}>
60
60
  {{
@@ -43,7 +43,7 @@ const initItemDefaultValue = (item, existingData, submitForm, provider) => {
43
43
  if (item.defaultProps && item.defaultProps.maxNum && item.defaultProps.maxNum > 1) {
44
44
  value = value || []
45
45
  } else {
46
- value = value || { [uploaderProvider.path]: "", [uploaderProvider.url]: "" }
46
+ value = value || { [uploaderProvider?.defaultFileItem?.path]: "", [uploaderProvider?.defaultFileItem?.url]: "" }
47
47
  }
48
48
  }
49
49