pages.json配置

“pages”: [
{
“path”: “pages/policy-detail/policy-detail”,//政策详情
“style”: {
“navigationBarTitleText”: “政策详情页”,
“navigationBarTextStyle”:“black”,//标题栏字体颜色
“navigationBarBackgroundColor”: “#F9F9F9” //标题栏背景色
}
},
],

“tabBar”: {
“selectedColor”: “#3DB86D”,
“color”: “#666”,
“backgroundColor”: “#fff”,
“list”: [{
“pagePath”: “pages/policy-learning/policy-learning”,
“text”: “文章”,
“iconPath”: “/static/img/tabbar/policy.png”,
“selectedIconPath”: “/static/img/tabbar/policy.png”
},
{
“pagePath”: “pages/new-appointment/new-appointment”,
“text”: “预约”,
“iconPath”: “/static/img/tabbar/new-appointment.png”,
“selectedIconPath”: “/static/img/tabbar/new-appointment.png”
},
{
“pagePath”: “pages/order/order”,
“text”: “订单”,
“iconPath”: “/static/img/tabbar/order.png”,
“selectedIconPath”: “/static/img/tabbar/order.png”
},
{
“pagePath”: “pages/user/user”,
“text”: “用户”,
“iconPath”: “/static/img/tabbar/user.png”,
“selectedIconPath”: “/static/img/tabbar/user.png”
}
]
},
“globalStyle”: {
“navigationBarTextStyle”: “#fff”,
“navigationBarTitleText”: “uni-app”,
// “navigationBarBackgroundColor”: “#fff”,
“navigationBarBackgroundColor”: “#7DBE70”,
“backgroundColor”: “#fff”,
“backgroundTextStyle”: “light”
},

猜你喜欢

转载自blog.csdn.net/maoge_666/article/details/131020777