Commit aae6425c authored by spc's avatar spc

Merge branch 'master' into dev

parents 63aaa886 990857d0
...@@ -16,6 +16,12 @@ const $baseUrl = proxy.$baseUrl ...@@ -16,6 +16,12 @@ const $baseUrl = proxy.$baseUrl
const jumpFailed = ref(false) const jumpFailed = ref(false)
const errorMessage = ref('') const errorMessage = ref('')
const jumpParams = ref({}) const jumpParams = ref({})
const bgImg = ref('')
const bgImgObj = {
'sy': 'thirdJumpMiddlePage/v1/syJumpPageBg.jpg'
}
// 页面加载时获取参数 // 页面加载时获取参数
onMounted(() => { onMounted(() => {
...@@ -26,6 +32,10 @@ onMounted(() => { ...@@ -26,6 +32,10 @@ onMounted(() => {
console.log('页面参数 options:', options) console.log('页面参数 options:', options)
const key = options.key || 'sy'
bgImg.value = bgImgObj[key]
// 解析跳转参数 // 解析跳转参数
jumpParams.value = { jumpParams.value = {
appId: options.appId || '', appId: options.appId || '',
......
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