@tplc/business 0.4.151 → 0.4.153

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,34 @@
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.153](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.149...v0.4.153) (2025-07-09)
6
+
7
+
8
+ ### 🐛 Bug Fixes | Bug 修复
9
+
10
+ * bag ([5216da7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/5216da7f53a0fe6f08e4f4804b638c12c00f8729))
11
+
12
+
13
+ ### 🚀 Chore | 构建/工程依赖/工具
14
+
15
+ * **release:** 0.4.150 ([6f4024b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6f4024bd4ab6b7aac6bffd6cfd38b85a9742aa86))
16
+ * **release:** 0.4.151 ([2b3633e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2b3633e5c4fc68732f2c50fdbb1f53484ac3a09d))
17
+ * **release:** 0.4.152 ([290a509](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/290a5094ac19c4bc759e6e65a5ffe2fb7464e516))
18
+
19
+
20
+ ### ✨ Features | 新功能
21
+
22
+ * cancel 支持 props ([ba8da2f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ba8da2f066a7a610549400724265184665c816e6))
23
+ * tag ([790e9c0](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/790e9c00900cafb389fa406eaf9e50acdc9bb9a6))
24
+ * 支持tags ([836acd8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/836acd854f30018968b9f39bdd2e1ab8dc5bd2a0))
25
+
26
+ ### [0.4.152](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.151...v0.4.152) (2025-07-08)
27
+
28
+
29
+ ### 🐛 Bug Fixes | Bug 修复
30
+
31
+ * bag ([5216da7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/5216da7f53a0fe6f08e4f4804b638c12c00f8729))
32
+
5
33
  ### [0.4.151](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.150...v0.4.151) (2025-07-07)
6
34
 
7
35
 
@@ -295,7 +295,7 @@ const onActionClick = async () => {
295
295
  }
296
296
  }
297
297
  const getPhoneNumber = (e) => {
298
- if (e.detail.errMsg === 'getPhoneNurefreshmber:ok') {
298
+ if (e.detail.errMsg === 'getPhoneNumber:ok') {
299
299
  emits('phone', e)
300
300
  }
301
301
  }
@@ -15,6 +15,7 @@ export interface UserCommissionLog {
15
15
  lastModifyDate: string
16
16
  orderNo: string
17
17
  title: string
18
+ tags: string
18
19
  relevanceAction: string
19
20
  relevanceId: string
20
21
  relevanceType: string
@@ -12,14 +12,24 @@
12
12
  <lcb-block v-bind="$props" v-for="item in dataList" :key="item.distributorCommissionLogId">
13
13
  <view class="border-bottom">
14
14
  <view class="flex items-center justify-between pr-3 font-500">
15
- <view class="relative">
15
+ <view class="relative flex items-center gap-2">
16
16
  {{ item.title }}
17
17
  <view
18
18
  class="title-view"
19
19
  :style="{
20
20
  backgroundColor: item.statusInfo?.statusColor,
21
21
  }"
22
- ></view>
22
+ />
23
+ <template v-if="item.tags">
24
+ <wd-tag
25
+ v-for="(tag, index) in JSON.parse(item.tags)"
26
+ :key="index"
27
+ plain
28
+ type="primary"
29
+ >
30
+ {{ tag }}
31
+ </wd-tag>
32
+ </template>
23
33
  </view>
24
34
  <view
25
35
  :style="{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.151",
3
+ "version": "0.4.153",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -12,6 +12,7 @@ export interface UserCommissionLog {
12
12
  lastModifyDate: string
13
13
  orderNo: string
14
14
  title: string
15
+ tags: string
15
16
  relevanceAction: string
16
17
  relevanceId: string
17
18
  relevanceType: string