@tplc/business 0.5.37 → 0.5.38

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,13 @@
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.38](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.37...v0.5.38) (2025-11-03)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * 调整字段 ([c65c53e](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/c65c53ec4e65c8bee05cd86c1371dc2d717ef761))
11
+
5
12
  ### [0.5.37](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.36...v0.5.37) (2025-11-03)
6
13
 
7
14
 
@@ -33,7 +33,7 @@ defineOptions({
33
33
  })
34
34
 
35
35
  const props = defineProps<{
36
- jumpType?: string
36
+ jumpUrl?: string
37
37
  }>()
38
38
  const popupInfo = ref<Record<string, any>>({})
39
39
  provide(PAGE_PROVIDE_KEY, popupInfo)
@@ -51,7 +51,7 @@ watch(
51
51
  async (newVal) => {
52
52
  if (newVal) {
53
53
  const { data } = (await uni.$lcb.http.post('/pageDecoration/page/detail', {
54
- pageType: props.jumpType,
54
+ pageType: props.jumpUrl,
55
55
  })) as any
56
56
  pageInfo.value = data
57
57
  if (pageInfo.value?.page?.requestApi) {
@@ -62,7 +62,7 @@
62
62
  <CustomPopup
63
63
  v-model="showCustomPopup"
64
64
  v-if="[145].includes(getJumpType(jumpType)) && showCustomPopup"
65
- :jumpType="getJumpType(jumpType)"
65
+ :jumpUrl="jumpUrl"
66
66
  />
67
67
  </template>
68
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.5.37",
3
+ "version": "0.5.38",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -1,5 +1,5 @@
1
1
  declare let __VLS_typeProps: {
2
- jumpType?: string
2
+ jumpUrl?: string
3
3
  }
4
4
  type __VLS_PublicProps = {
5
5
  modelValue?: any