@tplc/business 0.4.32 → 0.4.34

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,20 @@
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.34](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.33...v0.4.34) (2025-03-29)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * 修改属性 ([e8ab53e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e8ab53eec1f85e74fe901f3971a557713bee5486))
11
+
12
+ ### [0.4.33](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.76...v0.4.33) (2025-03-29)
13
+
14
+
15
+ ### 🐛 Bug Fixes | Bug 修复
16
+
17
+ * ui ([9d087bb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9d087bb527f4f68b8146b7e6914c4633b3ff08e2))
18
+
5
19
  ### [0.4.32](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.29...v0.4.32) (2025-03-29)
6
20
 
7
21
 
@@ -132,9 +132,11 @@ watch(
132
132
  ...((options.value.filter((v) => v.valueName).map((v) => v.valueName) as string[]) || []),
133
133
  ]
134
134
  })
135
+ currentCategory.value = 0
135
136
  },
136
137
  {
137
138
  immediate: true,
139
+ deep: true,
138
140
  },
139
141
  )
140
142
  const onGridScroll = (e) => {
@@ -222,7 +222,7 @@ const canBack = computed(() => {
222
222
 
223
223
  const capsuleList = computed(() => {
224
224
  const list: ICapsule[] = []
225
- if (props.back) {
225
+ if (canBack.value) {
226
226
  list.push({
227
227
  icon: 'zuo_left',
228
228
  action: 'back',
@@ -1,5 +1,10 @@
1
1
  <template>
2
- <view class="flex w-full items-center">
2
+ <view
3
+ class="flex w-full items-center"
4
+ :style="{
5
+ backgroundColor: blockBackground,
6
+ }"
7
+ >
3
8
  <lcb-block
4
9
  v-bind="$props"
5
10
  customClass="border-solid"
@@ -30,5 +30,6 @@ export type LcbSearchProps = {
30
30
  historyKey?: string
31
31
 
32
32
  initFocus?: boolean
33
+ blockBackground?: string
33
34
  } & LcbActionViewProps &
34
35
  LcbBlockProps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.32",
3
+ "version": "0.4.34",
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.75"
14
+ "@tplc/wot": "0.1.76"
15
15
  },
16
16
  "engines": {
17
17
  "node": ">=18",
@@ -64,6 +64,7 @@ declare const _default: import('vue').DefineComponent<
64
64
  lineHeight?: number
65
65
  historyKey?: string
66
66
  initFocus?: boolean
67
+ blockBackground?: string
67
68
  } & {
68
69
  jumpUrl?: string
69
70
  urlParams?: string
@@ -154,6 +155,7 @@ declare const _default: import('vue').DefineComponent<
154
155
  lineHeight?: number
155
156
  historyKey?: string
156
157
  initFocus?: boolean
158
+ blockBackground?: string
157
159
  } & {
158
160
  jumpUrl?: string
159
161
  urlParams?: string
@@ -222,6 +224,7 @@ declare const _default: import('vue').DefineComponent<
222
224
  lineHeight?: number
223
225
  historyKey?: string
224
226
  initFocus?: boolean
227
+ blockBackground?: string
225
228
  } & {
226
229
  jumpUrl?: string
227
230
  urlParams?: string
@@ -292,6 +295,7 @@ declare const _default: import('vue').DefineComponent<
292
295
  lineHeight?: number
293
296
  historyKey?: string
294
297
  initFocus?: boolean
298
+ blockBackground?: string
295
299
  } & {
296
300
  jumpUrl?: string
297
301
  urlParams?: string
@@ -357,6 +361,7 @@ declare const _default: import('vue').DefineComponent<
357
361
  lineHeight?: number
358
362
  historyKey?: string
359
363
  initFocus?: boolean
364
+ blockBackground?: string
360
365
  } & {
361
366
  jumpUrl?: string
362
367
  urlParams?: string
@@ -23,5 +23,6 @@ export type LcbSearchProps = {
23
23
  lineHeight?: number
24
24
  historyKey?: string
25
25
  initFocus?: boolean
26
+ blockBackground?: string
26
27
  } & LcbActionViewProps &
27
28
  LcbBlockProps