### 修改welcome頁跳轉方式
> 因為含有tabbar的頁面只能使用switchtab方法進行跳轉
`welcome.js`
~~~javascript
wx.switchTab({
url: "../posts/post",
})
~~~
`app.json`注冊tabbar
> 先建立電影空白頁面
~~~json
"tabBar": {
"list": [
{
"pagePath": "pages/movies/movies",
"text": "電影"
},
{
"pagePath": "pages/posts/post",
"text": "影評"
}
]
}
~~~
### 完善選項卡
~~~json
"tabBar": {
"borderStyle":"black",
"list": [
{
"pagePath": "pages/movies/movies",
"text": "電影",
"iconPath":"/images/tab/yuedu.png",
"selectedIconPath":"/images/tab/yuedu_hl.png"
},
{
"pagePath": "pages/posts/post",
"text": "影評",
"iconPath": "/images/tab/dianying.png",
"selectedIconPath": "/images/tab/dianying_hl.png"
}
]
}
~~~