@tplc/business 0.2.78 → 0.2.79
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,28 @@
|
|
|
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.2.79](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.53...v0.2.79) (2025-01-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
9
|
+
|
|
10
|
+
* 修改横向滚动不支持圆角 ([363ca00](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/363ca008f08c552aa888c3ebe1274a3063ab2760))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
14
|
+
|
|
15
|
+
* **release:** 0.2.76 ([ab99f27](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ab99f27a3e01db706809ee81f94731efb1ff67e9))
|
|
16
|
+
* **release:** 0.2.77 ([b1da5ad](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b1da5adbdcf8082bc57ce592a86e109658620818))
|
|
17
|
+
* **release:** 0.2.78 ([ac485d8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ac485d80335ab735eb060539f05e7514323b0911))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### ✨ Features | 新功能
|
|
21
|
+
|
|
22
|
+
* img block ([abbbb87](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/abbbb871b340d33e071dc78cc67e313aa3f4932b))
|
|
23
|
+
* watch修改一次 ([865595d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/865595d49e33c135fa2616fb26fa1f0f9c39bcb4))
|
|
24
|
+
* 图标处理 ([d17d2aa](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d17d2aab174fcdcac3bf60b68325c15abf64c9c5))
|
|
25
|
+
* 默认文字大小 ([ffa4f41](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ffa4f41ddc95aac957dcc1f5e822fab0bb26a81d))
|
|
26
|
+
|
|
5
27
|
### [0.2.78](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.77...v0.2.78) (2025-01-07)
|
|
6
28
|
|
|
7
29
|
### [0.2.77](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.76...v0.2.77) (2025-01-07)
|
|
@@ -46,25 +46,10 @@ const modelValue = defineModel<unknown[]>({
|
|
|
46
46
|
watchEffect(() => {
|
|
47
47
|
modelValue.value = dataList.value
|
|
48
48
|
})
|
|
49
|
-
|
|
50
|
-
watch(
|
|
51
|
-
() => props.url,
|
|
52
|
-
async (val) => {
|
|
53
|
-
if (val) {
|
|
54
|
-
paging.value?.reload()
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
immediate: true,
|
|
59
|
-
deep: true,
|
|
60
|
-
},
|
|
61
|
-
)
|
|
62
49
|
watch(
|
|
63
|
-
() => form?.value,
|
|
64
|
-
async (
|
|
65
|
-
|
|
66
|
-
paging.value?.reload()
|
|
67
|
-
}
|
|
50
|
+
() => [props.url, props.baseParam, form?.value],
|
|
51
|
+
async () => {
|
|
52
|
+
paging.value?.reload()
|
|
68
53
|
},
|
|
69
54
|
{
|
|
70
55
|
immediate: true,
|
|
@@ -145,7 +145,7 @@ const value = computed(() => {
|
|
|
145
145
|
</view>
|
|
146
146
|
</slot>
|
|
147
147
|
|
|
148
|
-
<slot :value="value" v-if="prop === 'level'" name="level">
|
|
148
|
+
<slot :value="value" v-if="prop === 'level' && value && Number(value)" name="level">
|
|
149
149
|
<view :class="className" :style="style" class="inline pl-1 relative top-[-3px]">
|
|
150
150
|
<wd-rate
|
|
151
151
|
:model-value="Number(value)"
|