@tplc/business 0.4.123 → 0.4.125
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,21 @@
|
|
|
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.125](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.124...v0.4.125) (2025-06-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* loginOut ([00a843f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/00a843fd3cfa0b1b1286ee6eaf09c84159d35fb0))
|
|
11
|
+
* 支持调整list border ([bbf541d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/bbf541d2bcf46c99cd190c955d1ede2de46b1671))
|
|
12
|
+
|
|
13
|
+
### [0.4.124](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.123...v0.4.124) (2025-06-08)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### ✨ Features | 新功能
|
|
17
|
+
|
|
18
|
+
* update version ([895d74e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/895d74e5abe6984c633071c320051883e0f9da06))
|
|
19
|
+
|
|
5
20
|
### [0.4.123](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.122...v0.4.123) (2025-06-08)
|
|
6
21
|
|
|
7
22
|
|
|
@@ -83,6 +83,7 @@ const emits = defineEmits<{
|
|
|
83
83
|
(e: 'click', value: void): void
|
|
84
84
|
(e: 'refresh', value: void): void
|
|
85
85
|
(e: 'nav', value: void): void
|
|
86
|
+
(e: 'loginOut', value: void): void
|
|
86
87
|
}>()
|
|
87
88
|
const templateMessageList = ref<TemplateMessage[]>([])
|
|
88
89
|
onMounted(async () => {
|
|
@@ -164,6 +165,7 @@ const onActionClick = async () => {
|
|
|
164
165
|
})
|
|
165
166
|
pageInfo.value = {}
|
|
166
167
|
basicInfo.value = {}
|
|
168
|
+
emits('loginOut')
|
|
167
169
|
}
|
|
168
170
|
},
|
|
169
171
|
})
|
|
@@ -215,6 +215,7 @@ const blockProps = computed(() => {
|
|
|
215
215
|
<lcb-product-item
|
|
216
216
|
v-else
|
|
217
217
|
v-bind="{ ...item, ...$props, ...attrs }"
|
|
218
|
+
:isLast="index === renderList.length - 1"
|
|
218
219
|
:layoutType="layoutType"
|
|
219
220
|
:coverImgStyle="{
|
|
220
221
|
width: layoutType === 'vertical' ? '100%' : transformValueUnit(imageWidth),
|
|
@@ -96,9 +96,11 @@ defineSlots<{
|
|
|
96
96
|
|
|
97
97
|
const borderStyle = computed(() => {
|
|
98
98
|
return {
|
|
99
|
-
borderWidth:
|
|
100
|
-
|
|
99
|
+
borderWidth: '0rpx',
|
|
100
|
+
borderBottomWidth: transformValueUnit(props.borderWidth),
|
|
101
|
+
borderBottomColor: props.borderColor,
|
|
101
102
|
borderStyle: 'solid',
|
|
103
|
+
paddingBottom: props.borderWidth ? '12rpx' : 0,
|
|
102
104
|
}
|
|
103
105
|
})
|
|
104
106
|
const itemStyle = computed(() => {
|
|
@@ -108,7 +110,11 @@ const itemStyle = computed(() => {
|
|
|
108
110
|
props.shadowColor && props.shadowSize
|
|
109
111
|
? `0px 0px ${props.blurSize}px ${props.shadowSize}px ${props.shadowColor}`
|
|
110
112
|
: '',
|
|
111
|
-
|
|
113
|
+
// 只有list类型才需要border
|
|
114
|
+
...(props.borderMode === 'full' && attrs.listType === 'list' && !attrs.isLast
|
|
115
|
+
? borderStyle.value
|
|
116
|
+
: {}),
|
|
117
|
+
padding: '24rpx',
|
|
112
118
|
}
|
|
113
119
|
})
|
|
114
120
|
</script>
|
|
@@ -118,7 +124,7 @@ const itemStyle = computed(() => {
|
|
|
118
124
|
<view
|
|
119
125
|
v-if="layoutType === 'horizontal'"
|
|
120
126
|
:class="className"
|
|
121
|
-
class="flex flex-col gap-1 px-2
|
|
127
|
+
class="flex flex-col gap-1 px-2 bg-white relative overflow-clip"
|
|
122
128
|
:style="itemStyle"
|
|
123
129
|
>
|
|
124
130
|
<slot name="itemSection" />
|