@tplc/business 0.3.20 → 0.3.22
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,15 @@
|
|
|
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.22](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.21...v0.3.22) (2025-02-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* nav 支持right ([010f27b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/010f27b78f47a0f287261a9d0e626cdcba303adc))
|
|
11
|
+
|
|
12
|
+
### [0.3.21](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.20...v0.3.21) (2025-02-07)
|
|
13
|
+
|
|
5
14
|
### [0.3.20](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.19...v0.3.20) (2025-02-07)
|
|
6
15
|
|
|
7
16
|
### [0.3.19](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.18...v0.3.19) (2025-02-07)
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
class="navbar-right gap-3"
|
|
84
84
|
v-if="rightIcons?.length"
|
|
85
85
|
:style="{
|
|
86
|
-
right: `${boundingInfo.right + boundingInfo.width
|
|
86
|
+
right: `${windowWidth - boundingInfo.right + boundingInfo.width}px`,
|
|
87
87
|
}"
|
|
88
88
|
>
|
|
89
89
|
<view
|
|
@@ -124,7 +124,7 @@ defineOptions({
|
|
|
124
124
|
styleIsolation: 'shared',
|
|
125
125
|
},
|
|
126
126
|
})
|
|
127
|
-
const { statusBarHeight } = uni.getWindowInfo()
|
|
127
|
+
const { statusBarHeight, windowWidth } = uni.getWindowInfo()
|
|
128
128
|
// 胶囊信息
|
|
129
129
|
const boundingInfo = uni.getMenuButtonBoundingClientRect?.() || {
|
|
130
130
|
width: 0,
|
|
@@ -77,11 +77,11 @@ withDefaults(defineProps<LcbVipProps>(), {
|
|
|
77
77
|
const info = ref<CurrentRightsDetail>()
|
|
78
78
|
const current = ref<UserLevelRightsList>()
|
|
79
79
|
const onItemClick = (item: UserLevelRightsList) => {
|
|
80
|
-
if (item.userRightsConfigId === '0') {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
current.value = item
|
|
80
|
+
// if (item.userRightsConfigId === '0') {
|
|
81
|
+
navigateTo('/pages-sub/vip/rights')
|
|
82
|
+
// return
|
|
83
|
+
// }
|
|
84
|
+
// current.value = item
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
onMounted(async () => {
|