原創(chuàng)聲明:本文為作者原創(chuàng),未經(jīng)允許不得轉(zhuǎn)載,經(jīng)授權(quán)轉(zhuǎn)載需注明作者和出處
我用navigateTo,實現(xiàn)頁面之間的跳轉(zhuǎn),app.json配置如下
{
“pages”: [
“pages/login/login”,
“pages/index/index”,
“pages/home/home”,
“pages/user/user”
],
“window”: {
“backgroundColor”: “#f4f4f4”,
“backgroundTextStyle”: “l(fā)ight”,
“navigationBarBackgroundColor”: “#0099FF”,
“navigationBarTitleText”: “AA”,
“enablePullDownRefresh”: “true”,
“navigationBarTextStyle”: “white”
},
“tabBar”: {
“selectedColor”: “#0099FF”,
“borderStyle”: “l(fā)ightgray”,
“backgroundColor”: “white”,
“l(fā)ist”: [
{
“pagePath”: “pages/index/index”,
“iconPath”: “resources/images/index.png”,
“selectedIconPath”: “resources/images/index.png”,
“text”: “首頁”
},
{
“pagePath”: “pages/home/home”,
“iconPath”: “resources/images/home.png”,
“selectedIconPath”: “resources/images/home.png”,
“text”: “主頁”
}]