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.
28 lines
736 B
28 lines
736 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.switchTab({
|
|
url:"/pages/personcenter/personcenter"
|
|
})
|
|
}else if(options.type == "scenicdetail"){
|
|
uni.redirectTo({
|
|
url:"/pages/scenic/scenicdetial/scenicdetial?unionid="+options.unionid+"&nickname="+options.nickname+"&headimgurl="+options.headimgurl+"&openid="+options.openid+"&suitid="+options.suitid+"&guid="+options.guid
|
|
})
|
|
}else{
|
|
uni.switchTab({
|
|
url:"/pages/personcenter/personcenter"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import url('../../static/css/common.css');
|
|
</style>
|
|
|