@tplc/business 0.2.63 → 0.2.64
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.64](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.63...v0.2.64) (2025-01-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 支持业务组件地址切换 ([83912ed](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/83912ede332299ad4b46d0018336883eaf0788a1))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
14
|
+
|
|
15
|
+
* headerinfo 卡顿 ([dd7049e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/dd7049ea008d0e6863de93979d331b078e4a14fe))
|
|
16
|
+
|
|
5
17
|
### [0.2.63](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.62...v0.2.63) (2025-01-04)
|
|
6
18
|
|
|
7
19
|
### [0.2.62](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.61...v0.2.62) (2025-01-04)
|
|
@@ -143,7 +143,7 @@ const value = computed(() => {
|
|
|
143
143
|
|
|
144
144
|
<slot :value="value" v-if="prop === 'level'" name="level">
|
|
145
145
|
<view :class="className" :style="style" class="inline pl-1 relative top-[-3px]">
|
|
146
|
-
<wd-rate
|
|
146
|
+
<wd-rate :model-value="Number(value)" :num="value" readonly size="12px" space="2px" />
|
|
147
147
|
</view>
|
|
148
148
|
</slot>
|
|
149
149
|
<slot :value="value" v-if="prop === 'titleIcon'" name="titleIcon">
|
|
@@ -312,13 +312,17 @@ const value = computed(() => {
|
|
|
312
312
|
</view>
|
|
313
313
|
</slot>
|
|
314
314
|
<slot :value="value" v-if="prop === 'headImg'" name="headImg">
|
|
315
|
-
<
|
|
316
|
-
|
|
317
|
-
|
|
315
|
+
<img
|
|
316
|
+
:src="value + `?x-oss-process=image/resize,m_mfit,w_${64}&imageView2/2/w/${64}`"
|
|
317
|
+
class="block w-4 h-4 rounded-full"
|
|
318
|
+
:class="className"
|
|
319
|
+
:style="style"
|
|
320
|
+
mode="aspectFill"
|
|
321
|
+
/>
|
|
318
322
|
</slot>
|
|
319
323
|
<slot :value="value" v-if="prop === 'userName'" name="userName">
|
|
320
324
|
<view :class="className" :style="style" class="text-20rpx text-#333 truncate">
|
|
321
|
-
|
|
325
|
+
{{ value }}
|
|
322
326
|
</view>
|
|
323
327
|
</slot>
|
|
324
328
|
</block>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tplc/business",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.64",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"业务组件"
|
|
6
6
|
],
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"vue": ">=3.2.47",
|
|
14
|
-
"@tplc/wot": "0.1.
|
|
14
|
+
"@tplc/wot": "0.1.51"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18",
|