Commit d62d4119 authored by spc's avatar spc

middlepage

parent aeb2fa83
...@@ -196,6 +196,13 @@ ...@@ -196,6 +196,13 @@
"navigationBarTitleText": "", "navigationBarTitleText": "",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path" : "pages/middlePage/middlePage",
"style" :
{
"navigationBarTitleText" : ""
}
} }
], ],
"subPackages": [ "subPackages": [
......
<template>
<view class="third-jump-page" @click="retryJump">
<image class="bg-img" :src="`${$baseUrl}${bgImg}`" mode="widthFix"></image>
</view>
</template>
<script setup>
import { ref, onMounted, getCurrentInstance } from 'vue'
import { jump } from '../../utils/index.js'; // Import jump function
// 获取全局属性
const { proxy } = getCurrentInstance()
const $baseUrl = proxy.$baseUrl
// 响应式数据
const jumpFailed = ref(false)
const errorMessage = ref('')
const jumpParams = ref({})
const bgImg = ref('')
// const bgImgObj = {
// 'sy': 'thirdJumpMiddlePage/v1/syJumpPageBg.jpg'
// }
// 页面加载时获取参数
onMounted(() => {
// 获取页面参数
const pages = getCurrentPages()
const currentPage = pages[pages.length - 1]
const options = currentPage.options || {}
// 解析跳转参数
jumpParams.value = {
appId: options.appId || '',
path: decodeURIComponent(options.path) || '',
extraData: options.extraData ? JSON.parse(decodeURIComponent(options.extraData)) : {},
envVersion: options.envVersion || 'release',
type: options.type,
embedded: options.embedded,
}
// 执行跳转
executeJump()
})
// 执行跳转
const executeJump = () => {
const jumpData = {
type: jumpParams.value.type*1,
url: jumpParams.value.path,
extra: {
appId: jumpParams.value.appId,
path: jumpParams.value.path,
extraData: jumpParams.value.extraData,
envVersion: jumpParams.value.envVersion,
embedded: jumpParams.value.embedded
}
}
console.warn('executeJump jumpData:', jumpData)
jump(jumpData)
}
// 重试跳转
const retryJump = () => {
executeJump()
}
</script>
<style lang="less" scoped>
.third-jump-page {
background: white;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
padding: 40rpx;
}
.bg-img {
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment