@tplc/business 0.4.37 → 0.4.38
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,13 @@
|
|
|
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.4.38](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.37...v0.4.38) (2025-03-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 新增标签 ([7fc17bb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7fc17bb599fb1fd57c522b0c34ef6ae5d33ba6c6))
|
|
11
|
+
|
|
5
12
|
### [0.4.37](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.36...v0.4.37) (2025-03-30)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<lcb-block v-bind="$props">
|
|
3
3
|
<view class="flex justify-between items-center text-28rpx">
|
|
4
|
-
<view
|
|
4
|
+
<lcb-action-view
|
|
5
5
|
v-for="item in items"
|
|
6
6
|
:key="item.title"
|
|
7
|
-
class="flex flex-col items-center justify-center"
|
|
7
|
+
custom-class="flex flex-col items-center justify-center"
|
|
8
|
+
v-bind="item.link"
|
|
8
9
|
>
|
|
9
10
|
<view class="flex mb-12rpx">
|
|
10
11
|
<view class="text-24rpx mr-4rpx mt-12rpx">{{ item.unit }}</view>
|
|
11
12
|
<view class="font-500 text-36rpx">{{ pageInfo[item.key] || '0.00' }}</view>
|
|
12
13
|
</view>
|
|
13
14
|
<view>{{ item.title }}</view>
|
|
14
|
-
</view>
|
|
15
|
+
</lcb-action-view>
|
|
15
16
|
</view>
|
|
16
17
|
</lcb-block>
|
|
17
18
|
</template>
|
package/package.json
CHANGED