@tplc/business 0.3.63 → 0.3.64
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 +8 -0
- package/components/lcb-img-nav/lcb-img-nav.vue +1 -0
- package/components/lcb-nav/Title/index.vue +10 -1
- package/components/lcb-nav/lcb-nav.vue +5 -0
- package/components/lcb-nav/types.ts +2 -0
- package/package.json +1 -1
- package/types/components/lcb-nav/lcb-nav.vue.d.ts +8 -0
- package/types/components/lcb-nav/types.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.3.64](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.63...v0.3.64) (2025-02-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 展示修改 ([19028e3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/19028e36a9a20a934d7eba6db0df949df3470405))
|
|
11
|
+
* 调整二维码 ([f41b055](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/f41b05590ec8134b6f8bb8d4d86afcfac355150a))
|
|
12
|
+
|
|
5
13
|
### [0.3.63](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.62...v0.3.63) (2025-02-27)
|
|
6
14
|
|
|
7
15
|
### [0.3.62](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.62...v0.3.62) (2025-02-27)
|
|
@@ -8,7 +8,15 @@
|
|
|
8
8
|
<view class="images mr-2" v-if="logoImg">
|
|
9
9
|
<img :src="logoImg" />
|
|
10
10
|
</view>
|
|
11
|
-
<view
|
|
11
|
+
<view
|
|
12
|
+
class="title"
|
|
13
|
+
:style="{
|
|
14
|
+
fontSize: transformValueUnit(textSize),
|
|
15
|
+
fontWeight: fontWeight,
|
|
16
|
+
}"
|
|
17
|
+
>
|
|
18
|
+
{{ title }}
|
|
19
|
+
</view>
|
|
12
20
|
</view>
|
|
13
21
|
<view class="images" v-else>
|
|
14
22
|
<img :src="typographyTextBackground" />
|
|
@@ -18,6 +26,7 @@
|
|
|
18
26
|
|
|
19
27
|
<script setup lang="ts">
|
|
20
28
|
import { NavTitleProps } from '../types'
|
|
29
|
+
import { transformValueUnit } from '../../../utils/transform'
|
|
21
30
|
defineOptions({
|
|
22
31
|
name: 'LcbNavTitle',
|
|
23
32
|
options: {
|
|
@@ -164,6 +164,9 @@ const props = withDefaults(defineProps<NavProps>(), {
|
|
|
164
164
|
back: false,
|
|
165
165
|
capsuleMode: 'light',
|
|
166
166
|
immersionMode: 1,
|
|
167
|
+
textSize: 32,
|
|
168
|
+
fontWeight: 500,
|
|
169
|
+
textColor: '#000000',
|
|
167
170
|
})
|
|
168
171
|
const navbarBgColor = computed(() => {
|
|
169
172
|
return props.backgroundType === 'color' ? props.backColor : ''
|
|
@@ -197,6 +200,8 @@ const titleProps = computed(() => {
|
|
|
197
200
|
logoImg: props.logoImg,
|
|
198
201
|
title: props.title,
|
|
199
202
|
titleLocation: props.titleLocation,
|
|
203
|
+
textSize: props.textSize,
|
|
204
|
+
fontWeight: props.fontWeight,
|
|
200
205
|
}
|
|
201
206
|
})
|
|
202
207
|
|
package/package.json
CHANGED
|
@@ -16,6 +16,9 @@ declare const _default: import('vue').DefineComponent<
|
|
|
16
16
|
back: boolean
|
|
17
17
|
capsuleMode: string
|
|
18
18
|
immersionMode: number
|
|
19
|
+
textSize: number
|
|
20
|
+
fontWeight: number
|
|
21
|
+
textColor: string
|
|
19
22
|
}
|
|
20
23
|
>,
|
|
21
24
|
{},
|
|
@@ -45,6 +48,9 @@ declare const _default: import('vue').DefineComponent<
|
|
|
45
48
|
back: boolean
|
|
46
49
|
capsuleMode: string
|
|
47
50
|
immersionMode: number
|
|
51
|
+
textSize: number
|
|
52
|
+
fontWeight: number
|
|
53
|
+
textColor: string
|
|
48
54
|
}
|
|
49
55
|
>
|
|
50
56
|
>
|
|
@@ -52,6 +58,8 @@ declare const _default: import('vue').DefineComponent<
|
|
|
52
58
|
{
|
|
53
59
|
title: string
|
|
54
60
|
styleGroup: 1 | 2 | 3 | 4
|
|
61
|
+
fontWeight: number
|
|
62
|
+
textSize: number
|
|
55
63
|
back: boolean
|
|
56
64
|
topStyle: 1 | 2
|
|
57
65
|
immersionMode: 1 | 2
|