@tplc/business 0.2.76 → 0.2.77
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,18 @@
|
|
|
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.77](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.76...v0.2.77) (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
|
+
### ✨ Features | 新功能
|
|
14
|
+
|
|
15
|
+
* 图标处理 ([d17d2aa](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d17d2aab174fcdcac3bf60b68325c15abf64c9c5))
|
|
16
|
+
|
|
5
17
|
### [0.2.76](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.74...v0.2.76) (2025-01-07)
|
|
6
18
|
|
|
7
19
|
|
|
@@ -101,7 +101,10 @@ const value = computed(() => {
|
|
|
101
101
|
<wd-img :src="value" mode="aspectFill" width="100%" height="100%" v-if="!$slots.coverImg" />
|
|
102
102
|
<slot name="coverImg" :value="value" v-else />
|
|
103
103
|
<!-- imgBottomIcon -->
|
|
104
|
-
<view
|
|
104
|
+
<view
|
|
105
|
+
class="absolute bottom-0 left-0 w-full"
|
|
106
|
+
v-if="itemProps.imgBottomIcon && itemProps.imgBottomIconVisible"
|
|
107
|
+
>
|
|
105
108
|
<wd-img
|
|
106
109
|
:src="itemProps.imgBottomIcon"
|
|
107
110
|
custom-class="block"
|
|
@@ -111,7 +114,10 @@ const value = computed(() => {
|
|
|
111
114
|
/>
|
|
112
115
|
</view>
|
|
113
116
|
<!-- imgCornerIcon -->
|
|
114
|
-
<view
|
|
117
|
+
<view
|
|
118
|
+
class="absolute top-0 left-0 h-8"
|
|
119
|
+
v-if="itemProps.imgCornerIcon && itemProps.imgCornerIconVisible"
|
|
120
|
+
>
|
|
115
121
|
<wd-img
|
|
116
122
|
:src="itemProps.imgCornerIcon"
|
|
117
123
|
width="auto"
|
|
@@ -161,19 +167,13 @@ const value = computed(() => {
|
|
|
161
167
|
</slot>
|
|
162
168
|
|
|
163
169
|
<slot :value="value" v-if="prop === 'scoreAvg'" name="scoreAvg">
|
|
164
|
-
<view :class="className" :style="style"
|
|
165
|
-
|
|
166
|
-
custom-class="!text-24rpx relative top-[-2px]"
|
|
167
|
-
:color="'#ffffff'"
|
|
168
|
-
:bg-color="'#4554F0'"
|
|
169
|
-
>
|
|
170
|
-
{{ value }}
|
|
171
|
-
</wd-tag>
|
|
170
|
+
<view :class="`px-1.5 rounded bg-primary text-4 text-white ${className}`" :style="style">
|
|
171
|
+
{{ value }}
|
|
172
172
|
</view>
|
|
173
173
|
</slot>
|
|
174
174
|
|
|
175
175
|
<slot :value="value" v-if="prop === 'scoreTips'" name="scoreTips">
|
|
176
|
-
<view :class="className" :style="style" class="text-
|
|
176
|
+
<view :class="className" :style="style" class="text-primary font-bold">
|
|
177
177
|
<view>{{ value }}</view>
|
|
178
178
|
</view>
|
|
179
179
|
</slot>
|