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.
75 lines
2.0 KiB
75 lines
2.0 KiB
{
|
|
// "condition": { //模式配置,仅开发期间生效
|
|
// "current": 0, //当前激活的模式(list 的索引项)
|
|
// "list": [{
|
|
// "name": "test", //模式名称
|
|
// "path": "pages/componentsA/test/test", //启动页面,必选
|
|
// "query": "" //启动参数,在页面的onLoad函数里面得到
|
|
// }]
|
|
// },
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/login/login",
|
|
"style": {
|
|
"navigationBarTitleText": "登录",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/home/AddFragment",
|
|
"style": {}
|
|
},{
|
|
"path": "pages/home/FindFragment",
|
|
"style": {}
|
|
}, {
|
|
"path": "pages/home/UserFragment",
|
|
"style": {}
|
|
},{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "APP示例"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"pageOrientation": "portrait",
|
|
"navigationBarTitleText": "Hello uniapp",
|
|
"navigationBarTextStyle": "white",
|
|
"navigationBarBackgroundColor": "#007AFF",
|
|
"backgroundColor": "#F8F8F8",
|
|
"backgroundColorTop": "#F4F5F6",
|
|
"backgroundColorBottom": "#F4F5F6",
|
|
"mp-360": {
|
|
"navigationStyle": "custom"
|
|
},
|
|
"h5": {
|
|
"maxWidth": 1190,
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarBackgroundColor": "#F1F1F1"
|
|
}
|
|
|
|
},
|
|
"tabBar": {
|
|
"color": "#959595",
|
|
"selectedColor": "#41adf8",
|
|
"backgroundColor": "#FFFFFF",
|
|
"borderStyle": "black",
|
|
"list": [{
|
|
"pagePath": "pages/home/FindFragment",
|
|
"iconPath": "static/bottom-icon/find_normal.png",
|
|
"selectedIconPath": "static/bottom-icon/find_press.png",
|
|
"text": "发现"
|
|
}, {
|
|
"pagePath": "pages/home/AddFragment",
|
|
"iconPath": "static/bottom-icon/add_normal.png",
|
|
"selectedIconPath": "static/bottom-icon/add_press.png",
|
|
"text": "发布"
|
|
}, {
|
|
"pagePath": "pages/home/UserFragment",
|
|
"iconPath": "static/bottom-icon/mine_normal.png",
|
|
"selectedIconPath": "static/bottom-icon/mine_press.png",
|
|
"text": "我的"
|
|
}]
|
|
|
|
}
|
|
}
|
|
|