公司演示版e鹿悦游
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
CjyTravel/subPageA/personcenter/middlePage.vue

28 lines
706 B

<template>
<view style="text-align: center;font-size: 13px;">...跳转中</view>
</template>
<script>
export default {
onLoad(options) {
if(options.type == "person"){
this.$param.user_info = options;
uni.reLaunch({
url:"/pages/personcenter"
})
}else if(options.type == "scenicdetail"){
uni.redirectTo({
url:"/subPageA/scenic/scenicdetial/scenicdetial?unionid="+options.unionid+"&nickname="+options.nickname+"&headimgurl="+options.headimgurl+"&openid="+options.openid+"&suitid="+options.suitid+"&guid="+options.guid
})
}else{
uni.reLaunch({
url:"/pages/personcenter"
})
}
}
}
</script>
<style>
@import url('/static/css/common.css');
</style>