@tplc/business 0.5.37 → 0.5.39
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.39](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.38...v0.5.39) (2025-11-03)
|
|
6
|
+
|
|
7
|
+
### [0.5.38](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.37...v0.5.38) (2025-11-03)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ✨ Features | 新功能
|
|
11
|
+
|
|
12
|
+
* 调整字段 ([c65c53e](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/c65c53ec4e65c8bee05cd86c1371dc2d717ef761))
|
|
13
|
+
|
|
5
14
|
### [0.5.37](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.36...v0.5.37) (2025-11-03)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
<wd-popup
|
|
3
3
|
v-model="show"
|
|
4
4
|
:z-index="1000"
|
|
5
|
-
closable
|
|
5
|
+
:closable="false"
|
|
6
6
|
position="center"
|
|
7
|
-
|
|
7
|
+
:close-on-click-modal="false"
|
|
8
|
+
custom-class="!bg-transparent !flex flex-col items-center"
|
|
8
9
|
>
|
|
9
10
|
<view
|
|
10
11
|
:style="{ width: transformValueUnit(pageInfo?.page.popupWidth || '500') }"
|
|
@@ -16,12 +17,13 @@
|
|
|
16
17
|
:element="element"
|
|
17
18
|
/>
|
|
18
19
|
</view>
|
|
20
|
+
<wd-icon name="close-circle" size="30" color="#fff" @click="show = false" custom-class="mt-3" />
|
|
19
21
|
</wd-popup>
|
|
20
22
|
</template>
|
|
21
23
|
<script setup lang="ts">
|
|
22
24
|
import { transformValueUnit } from '../../../../utils/transform'
|
|
23
25
|
import { TextRenderViewItem } from '../../../../action'
|
|
24
|
-
import { provide, ref, watch } from 'vue'
|
|
26
|
+
import { provide, Ref, ref, watch } from 'vue'
|
|
25
27
|
import { PAGE_PROVIDE_KEY } from '../../../../constants'
|
|
26
28
|
defineOptions({
|
|
27
29
|
name: 'ActionCustomPopup',
|
|
@@ -33,9 +35,9 @@ defineOptions({
|
|
|
33
35
|
})
|
|
34
36
|
|
|
35
37
|
const props = defineProps<{
|
|
36
|
-
|
|
38
|
+
jumpUrl?: string
|
|
37
39
|
}>()
|
|
38
|
-
const popupInfo = ref
|
|
40
|
+
const popupInfo = ref({})
|
|
39
41
|
provide(PAGE_PROVIDE_KEY, popupInfo)
|
|
40
42
|
const show = defineModel({ default: false })
|
|
41
43
|
const pageInfo = ref<{
|
|
@@ -51,7 +53,7 @@ watch(
|
|
|
51
53
|
async (newVal) => {
|
|
52
54
|
if (newVal) {
|
|
53
55
|
const { data } = (await uni.$lcb.http.post('/pageDecoration/page/detail', {
|
|
54
|
-
pageType: props.
|
|
56
|
+
pageType: props.jumpUrl,
|
|
55
57
|
})) as any
|
|
56
58
|
pageInfo.value = data
|
|
57
59
|
if (pageInfo.value?.page?.requestApi) {
|
package/package.json
CHANGED