关于我们页面实现
关于锋哥页面author.vue 我们这里用一个vip宣传页面,套一个web-view
<template>
<web-view src="http://www.java1234.com/vip.html"></web-view>
</template>
<script>
</script>
<style>
</style>
my.vue页面,点击关于锋哥跳转tab页面:
goJava1234Page:function(){
uni.switchTab({
url:"/pages/author/author"
})
}
修复问题一:创建完投票后,跳转到投票列表页面
uni.navigateTo({
url:"/pages/createVoteList/createVoteList"
})
修复问题二:客服页面
新建customer.vue
<template>
<view>客服页面</view>
<view>锋哥微信:java9266 备用 java8822</view>
<view>官网: www.java1234.vip</view>
</template>
<script>
</script>
<style>
</style>
{
"path": "pages/customer/customer",
"style": {
"navigationBarTitleText": "客服页面"
}
}
vote页面:
goCustomerPage:function(){
uni.navigateTo({
url:"/pages/customer/customer"
})
}