@tplc/business 0.2.80 → 0.2.82
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 +26 -0
- package/components/lcb-product/lcb-product.vue +1 -1
- package/components/lcb-title/lcb-title.vue +21 -1
- package/components/lcb-title/types.ts +1 -0
- package/package.json +1 -1
- package/types/components/lcb-title/lcb-title.vue.d.ts +3 -0
- package/types/components/lcb-title/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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.82](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.80...v0.2.82) (2025-01-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
|
+
|
|
10
|
+
* **release:** 0.2.81 ([0cbe3db](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/0cbe3dbdb94242830fe0587f276944c2d15bbcb8))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ✨ Features | 新功能
|
|
14
|
+
|
|
15
|
+
* product 支持调整布局 ([d836ffc](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d836ffcba2415c137e7956a18e6ee954e53bbdb4))
|
|
16
|
+
* 新增标签左线 ([2dcf22a](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2dcf22a3c8e0d64c696db9a682bf83f374a108d7))
|
|
17
|
+
|
|
18
|
+
### [0.2.81](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.79...v0.2.81) (2025-01-08)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
22
|
+
|
|
23
|
+
* **release:** 0.2.80 ([b282465](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b2824652912725873b76bd8c138bc96e82151b28))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### ✨ Features | 新功能
|
|
27
|
+
|
|
28
|
+
* level判断 ([c2beddd](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/c2beddd0a181d3b60281bdfddec7f70357668a7f))
|
|
29
|
+
* product 支持调整布局 ([d836ffc](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d836ffcba2415c137e7956a18e6ee954e53bbdb4))
|
|
30
|
+
|
|
5
31
|
### [0.2.80](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.78...v0.2.80) (2025-01-08)
|
|
6
32
|
|
|
7
33
|
|
|
@@ -48,10 +48,10 @@ watch(
|
|
|
48
48
|
const getData = async () => {
|
|
49
49
|
if (props.filterList) return
|
|
50
50
|
if (props.items?.length) {
|
|
51
|
-
console.log('props.items', props.items)
|
|
52
51
|
const { data } = await uni.$lcb.http.post('/productInfo/filteredPage', {
|
|
53
52
|
productIdList: props.items.map((item) => item.productId),
|
|
54
53
|
productType: props.items[0].productType,
|
|
54
|
+
listType: props.listType,
|
|
55
55
|
})
|
|
56
56
|
renderList.value = data as Record<string, any>[]
|
|
57
57
|
} else {
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
:style="{
|
|
10
10
|
fontWeight,
|
|
11
11
|
}"
|
|
12
|
+
:class="{
|
|
13
|
+
'title-line': showTitleLine,
|
|
14
|
+
}"
|
|
12
15
|
>
|
|
13
16
|
{{ title }}
|
|
14
17
|
</view>
|
|
@@ -63,6 +66,23 @@ withDefaults(defineProps<LcbTitleProps>(), {
|
|
|
63
66
|
hintFontSize: 24,
|
|
64
67
|
hintColor: '#666',
|
|
65
68
|
hintVerticalAlign: 'end',
|
|
69
|
+
showTitleLine: false,
|
|
66
70
|
})
|
|
67
71
|
</script>
|
|
68
|
-
<style lang="scss" scoped
|
|
72
|
+
<style lang="scss" scoped>
|
|
73
|
+
@import '@tplc/wot/components/common/abstracts/variable';
|
|
74
|
+
.title-line {
|
|
75
|
+
position: relative;
|
|
76
|
+
padding-left: 10rpx !important;
|
|
77
|
+
&::after {
|
|
78
|
+
content: '';
|
|
79
|
+
position: absolute;
|
|
80
|
+
top: 5%;
|
|
81
|
+
left: 0;
|
|
82
|
+
border-radius: 4rpx;
|
|
83
|
+
width: 6rpx;
|
|
84
|
+
height: 90%;
|
|
85
|
+
background-color: $-color-theme;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
</style>
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
15
15
|
hintFontSize: number
|
|
16
16
|
hintColor: string
|
|
17
17
|
hintVerticalAlign: string
|
|
18
|
+
showTitleLine: boolean
|
|
18
19
|
}
|
|
19
20
|
>,
|
|
20
21
|
{},
|
|
@@ -43,6 +44,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
43
44
|
hintFontSize: number
|
|
44
45
|
hintColor: string
|
|
45
46
|
hintVerticalAlign: string
|
|
47
|
+
showTitleLine: boolean
|
|
46
48
|
}
|
|
47
49
|
>
|
|
48
50
|
>
|
|
@@ -62,6 +64,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
62
64
|
hintColor: string
|
|
63
65
|
hintFontSize: number
|
|
64
66
|
hintVerticalAlign: 'end' | 'center'
|
|
67
|
+
showTitleLine: boolean
|
|
65
68
|
moreColor: string
|
|
66
69
|
moreFontSize: number
|
|
67
70
|
moreVerticalAlign: 'end' | 'center'
|