@tplc/business 0.7.19 → 0.7.20

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,19 @@
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.7.20](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v1.0.15...v0.7.20) (2025-12-17)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.7.19 ([8c3dfda](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/8c3dfda32de6f2d73e62b28d0935a792ea8dca89))
11
+
12
+
13
+ ### ✨ Features | 新功能
14
+
15
+ * fix back top ([d076291](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/d076291dbe5b50549575f5815ad7f14e6ffa57ae))
16
+ * 兼容点击 ([8027588](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/8027588f38760e3de6b01205ec982eceb91f0e86))
17
+
5
18
  ### [0.7.19](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.16...v0.7.19) (2025-12-16)
6
19
 
7
20
 
@@ -41,8 +41,8 @@
41
41
  <view class="ml-56rpx flex flex-col gap-3">
42
42
  <wd-radio
43
43
  v-for="child in item.content || item.items"
44
- :key="child.walletAccountId"
45
- :value="child.walletAccountId"
44
+ :key="child.payCardId"
45
+ :value="child.payCardId"
46
46
  shape="dot"
47
47
  cell
48
48
  >
@@ -112,7 +112,7 @@ onMounted(() => {
112
112
  if (item.content || item.items) {
113
113
  const defaultChild = (item.content || item.items)?.find((child) => child.defaultChecked)
114
114
  if (defaultChild) {
115
- groupValue.value = defaultChild.walletAccountId
115
+ groupValue.value = defaultChild.payCardId
116
116
  break
117
117
  }
118
118
  }
@@ -1,6 +1,6 @@
1
1
  import { LcbActionViewProps } from '../lcb-action-view/types'
2
2
  export interface ChildDetail {
3
- walletAccountId: string
3
+ payCardId: string
4
4
  name: string
5
5
  title: string
6
6
  link: LcbActionViewProps
package/package.json CHANGED
@@ -1,26 +1,17 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.7.19",
3
+ "version": "0.7.20",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
7
7
  "type": "module",
8
- "scripts": {
9
- "pub": "pnpm dts && pnpm publish --no-git-checks",
10
- "dts": "rm -rf types && vue-tsc --project ./tsconfig.dts.json && pnpm prettier --write types",
11
- "release-major": "standard-version --release-as major ",
12
- "release-minor": "standard-version --release-as minor",
13
- "release-patch": "standard-version --release-as patch ",
14
- "generateComponent": "node ./scripts/createComponent.mjs",
15
- "generateGlobalDts": "node ./scripts/generateGlobalDts.mjs"
16
- },
17
8
  "publishConfig": {
18
9
  "access": "public",
19
10
  "registry": "https://registry.npmjs.org/"
20
11
  },
21
12
  "peerDependencies": {
22
- "@tplc/wot": "workspace:*",
23
- "vue": ">=3.2.47"
13
+ "vue": ">=3.2.47",
14
+ "@tplc/wot": "1.0.15"
24
15
  },
25
16
  "engines": {
26
17
  "node": ">=18",
@@ -33,5 +24,14 @@
33
24
  },
34
25
  "devDependencies": {
35
26
  "standard-version": "^9.5.0"
27
+ },
28
+ "scripts": {
29
+ "pub": "pnpm dts && pnpm publish --no-git-checks",
30
+ "dts": "rm -rf types && vue-tsc --project ./tsconfig.dts.json && pnpm prettier --write types",
31
+ "release-major": "standard-version --release-as major ",
32
+ "release-minor": "standard-version --release-as minor",
33
+ "release-patch": "standard-version --release-as patch ",
34
+ "generateComponent": "node ./scripts/createComponent.mjs",
35
+ "generateGlobalDts": "node ./scripts/generateGlobalDts.mjs"
36
36
  }
37
- }
37
+ }
@@ -1,6 +1,6 @@
1
1
  import { LcbActionViewProps } from '../lcb-action-view/types'
2
2
  export interface ChildDetail {
3
- walletAccountId: string
3
+ payCardId: string
4
4
  name: string
5
5
  title: string
6
6
  link: LcbActionViewProps