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.
106 lines
2.4 KiB
106 lines
2.4 KiB
{
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "首页",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/index/choiceness",
|
|
"style": {
|
|
"navigationBarTitleText": "近期精选",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/creator/creator",
|
|
"style": {
|
|
"navigationBarTitleText": "艺术家",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/creator/creatorDetail",
|
|
"style": {
|
|
"navigationBarTitleText": "",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/creator/imgDetail",
|
|
"style": {
|
|
"navigationBarTitleText": "",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/userInfo",
|
|
"style": {
|
|
"navigationBarTitleText": "个人中心",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
}, {
|
|
"path": "pages/userInfo/myCollection/myCollection",
|
|
"style": {
|
|
"navigationBarTitleText": "我的收藏",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
|
|
}, {
|
|
"path": "pages/userInfo/question/question",
|
|
"style": {
|
|
"navigationBarTitleText": "常见问题",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
|
|
}, {
|
|
"path": "pages/userInfo/contactUs/contactUs",
|
|
"style": {
|
|
"navigationBarTitleText": "联系我们",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
|
|
}, {
|
|
"path": "pages/userInfo/setting/setting",
|
|
"style": {
|
|
"navigationBarTitleText": "设置",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "bnyer",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
//底部跳转tab
|
|
"tabBar": {
|
|
"color": "#7A7E83",
|
|
"selectedColor": "#1296DB",
|
|
"borderStyle": "black",
|
|
"backgroundColor": "#F8F8F8",
|
|
"list": [{
|
|
"pagePath": "pages/index/index",
|
|
"iconPath": "static/index-default.png",
|
|
"selectedIconPath": "static/index-select.png",
|
|
"text": "首页"
|
|
},
|
|
{
|
|
"pagePath": "pages/creator/creator",
|
|
"iconPath": "static/theme-default.png",
|
|
"selectedIconPath": "static/theme-select.png",
|
|
"text": "艺术家"
|
|
},
|
|
{
|
|
"pagePath": "pages/userInfo/userInfo",
|
|
"iconPath": "static/mine-default.png",
|
|
"selectedIconPath": "static/mine-select.png",
|
|
"text": "我的"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|