@tplc/business 0.3.22 → 0.3.23
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.3.23](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.57...v0.3.23) (2025-02-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
|
+
|
|
10
|
+
* **release:** 0.3.12 ([4dbee8c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/4dbee8caabde67c56b6e65c4400b570a774a3e7e))
|
|
11
|
+
* **release:** 0.3.13 ([fff5989](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/fff59899ee70cb9cc244044eec349d0676dad039))
|
|
12
|
+
* **release:** 0.3.14 ([b5806ad](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b5806adacf4d39693e211e161fc39a213f8c10ff))
|
|
13
|
+
* **release:** 0.3.15 ([ebd08c3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ebd08c349f5e73914d1ae3ebff0493ca3a32bd26))
|
|
14
|
+
* **release:** 0.3.16 ([ddf4a11](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ddf4a110e778b4ac95ae167a71202957289b41a4))
|
|
15
|
+
* **release:** 0.3.17 ([7e64aa7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7e64aa77344c46c8f1b1822e6d81a8e94acad93c))
|
|
16
|
+
* **release:** 0.3.18 ([4f439d4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/4f439d460c3c0a74067fada089a1fc41e99a3753))
|
|
17
|
+
* **release:** 0.3.19 ([34c7809](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/34c7809b10a470424d84672dd9e18f8ee4076a90))
|
|
18
|
+
* **release:** 0.3.20 ([eb560a6](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/eb560a6d402124c943301774bffc6bad87b11c04))
|
|
19
|
+
* **release:** 0.3.21 ([be64a05](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/be64a05cecc6e2d44423747b41c872d946fa9a5d))
|
|
20
|
+
* **release:** 0.3.22 ([7c09713](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7c097135e4f2a0cf7f043cd7726c21bd70064f63))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### ✨ Features | 新功能
|
|
24
|
+
|
|
25
|
+
* list 支持reload ([6f20d8c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6f20d8cb765fb87ddfab2f024d6b8f786946e727))
|
|
26
|
+
* nav 支持right ([010f27b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/010f27b78f47a0f287261a9d0e626cdcba303adc))
|
|
27
|
+
* vip 跳转调整 ([d859424](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d859424782df289c60d41ce6043a53808890f0ba))
|
|
28
|
+
* 去掉cell hover ([7cd90cd](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7cd90cd4d07e53400ce2533aa3c1a2e11afea694))
|
|
29
|
+
|
|
5
30
|
### [0.3.22](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.21...v0.3.22) (2025-02-07)
|
|
6
31
|
|
|
7
32
|
|
|
@@ -52,6 +52,10 @@ const props = defineProps({
|
|
|
52
52
|
dayjs().add(1, 'day').startOf('day').valueOf(),
|
|
53
53
|
],
|
|
54
54
|
},
|
|
55
|
+
params: {
|
|
56
|
+
type: Object,
|
|
57
|
+
default: () => ({}),
|
|
58
|
+
},
|
|
55
59
|
})
|
|
56
60
|
const model = defineModel<number[]>()
|
|
57
61
|
const value = ref(model.value || props.defaultValue)
|
|
@@ -62,6 +66,7 @@ const getDayInfo = async () => {
|
|
|
62
66
|
startDate: dayjs(props.minDate).startOf('month').format('YYYY-MM-DD HH:mm:ss'),
|
|
63
67
|
/** 第三个月最后一天 */
|
|
64
68
|
endDate: dayjs(props.maxDate).endOf('month').format('YYYY-MM-DD HH:mm:ss'),
|
|
69
|
+
...props.params,
|
|
65
70
|
})
|
|
66
71
|
holidayInfo.value = data.reduce(
|
|
67
72
|
(acc, cur) => {
|
package/package.json
CHANGED
|
@@ -48,6 +48,10 @@ declare const __VLS_component: import('vue').DefineComponent<
|
|
|
48
48
|
/** 最近三个月 number[] */
|
|
49
49
|
default: () => number[]
|
|
50
50
|
}
|
|
51
|
+
params: {
|
|
52
|
+
type: ObjectConstructor
|
|
53
|
+
default: () => {}
|
|
54
|
+
}
|
|
51
55
|
modelValue: {
|
|
52
56
|
type: import('vue').PropType<number[]>
|
|
53
57
|
}
|
|
@@ -113,6 +117,10 @@ declare const __VLS_component: import('vue').DefineComponent<
|
|
|
113
117
|
/** 最近三个月 number[] */
|
|
114
118
|
default: () => number[]
|
|
115
119
|
}
|
|
120
|
+
params: {
|
|
121
|
+
type: ObjectConstructor
|
|
122
|
+
default: () => {}
|
|
123
|
+
}
|
|
116
124
|
modelValue: {
|
|
117
125
|
type: import('vue').PropType<number[]>
|
|
118
126
|
}
|
|
@@ -128,6 +136,7 @@ declare const __VLS_component: import('vue').DefineComponent<
|
|
|
128
136
|
minDate: number
|
|
129
137
|
maxDate: number
|
|
130
138
|
defaultValue: number[]
|
|
139
|
+
params: Record<string, any>
|
|
131
140
|
},
|
|
132
141
|
{}
|
|
133
142
|
>
|