@tplc/business 0.5.72 → 0.5.74
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.5.74](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.73...v0.5.74) (2025-12-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
9
|
+
|
|
10
|
+
* action str ([a5b5ea7](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/a5b5ea77527c84904dfca663923b69ede964ae35))
|
|
11
|
+
|
|
12
|
+
### [0.5.73](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.72...v0.5.73) (2025-12-04)
|
|
13
|
+
|
|
5
14
|
### [0.5.72](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.71...v0.5.72) (2025-12-04)
|
|
6
15
|
|
|
7
16
|
### [0.5.71](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.70...v0.5.71) (2025-12-04)
|
|
@@ -352,7 +352,7 @@ const onActionClick = async () => {
|
|
|
352
352
|
}
|
|
353
353
|
const getJumpType = (jumpType?: string | number) => {
|
|
354
354
|
if (!jumpType) return ''
|
|
355
|
-
return jumpTypeMap[jumpType] ||
|
|
355
|
+
return `${jumpTypeMap[jumpType] || jumpType}`
|
|
356
356
|
}
|
|
357
357
|
const getPhoneNumber = (e) => {
|
|
358
358
|
if (e.detail.errMsg === 'getPhoneNumber:ok') {
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
overflowX: scrollX ? 'auto' : 'initial',
|
|
9
9
|
...innerStyle,
|
|
10
10
|
}"
|
|
11
|
-
class="h-
|
|
11
|
+
class="h-ful"
|
|
12
12
|
>
|
|
13
13
|
<view
|
|
14
14
|
v-for="(item, index) in list"
|
|
15
15
|
:key="item.id"
|
|
16
|
-
class="slot-wrapper"
|
|
16
|
+
class="slot-wrapper z-1"
|
|
17
17
|
:style="{
|
|
18
18
|
...getStyle(index),
|
|
19
19
|
overflowX,
|
|
@@ -129,13 +129,10 @@ const showArea = computed(() => {
|
|
|
129
129
|
</script>
|
|
130
130
|
|
|
131
131
|
<style lang="scss" scoped>
|
|
132
|
-
// 小程序的情况
|
|
133
|
-
// #ifdef MP-WEIXIN
|
|
134
132
|
.slot-wrapper {
|
|
135
|
-
:deep(>
|
|
133
|
+
:deep(> *) {
|
|
136
134
|
width: 100%;
|
|
137
|
-
height:
|
|
135
|
+
height: auto;
|
|
138
136
|
}
|
|
139
137
|
}
|
|
140
|
-
// #endif
|
|
141
138
|
</style>
|