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.
132 lines
3.2 KiB
132 lines
3.2 KiB
{
|
|
"easycom": { //easycom,按需自动注册组件。原则上可以把所有页面引入组件方法删掉,会自动引入。
|
|
"autoscan": true,
|
|
"custom": {
|
|
// "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
|
|
"^uni-(.*)": "@/components/uni-$1/uni-$1.vue",
|
|
"^nx-(.*)": "@/components/nx-$1/nx-$1.vue"
|
|
}
|
|
},
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"aliasPath": "/",
|
|
"name":"index",
|
|
"style": {
|
|
"navigationBarTitleText": "赛事助手",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/message/center_list",
|
|
"name":"messageList",
|
|
"style": {
|
|
"navigationBarTitleText": "消息列表",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
|
|
|
|
{
|
|
"path": "pages/message/detail",
|
|
"name":"messageDetail",
|
|
"style": {
|
|
"navigationBarTitleText": "消息详情",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/event/event_grade",
|
|
"name":"eventGrade",
|
|
"style": {
|
|
"navigationBarTitleText": "赛事打分",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/event/event_list",
|
|
"name":"eventList",
|
|
"style": {
|
|
"navigationBarTitleText": "赛事列表",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/reg",
|
|
"name":"reg",
|
|
"style": {
|
|
"navigationBarTitleText": "注册",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/login",
|
|
"name":"login",
|
|
"style": {
|
|
"navigationBarTitleText": "登录",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/forget",
|
|
"name":"forget",
|
|
"style": {
|
|
"navigationBarTitleText": "忘记密码",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/agreement",
|
|
"name":"agreement",
|
|
"style": {
|
|
"navigationBarTitleText": "用户协议",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/me/index",
|
|
"name":"me",
|
|
"style": {
|
|
"navigationBarTitleText": "我的",
|
|
"navigationBarBackgroundColor":"#009874",
|
|
"navigationBarTextStyle":"white"
|
|
}
|
|
}
|
|
],
|
|
"subPackages": [{
|
|
"root": "pages/public",
|
|
"pages": [{
|
|
"path": "404",
|
|
"name": "404",
|
|
"style": {
|
|
"navigationBarTitleText": "请重试"
|
|
}
|
|
}]
|
|
}],
|
|
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "通用模板",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
"condition": { //模式配置,仅开发期间生效
|
|
"current": 0, //当前激活的模式(list 的索引项)
|
|
"list": [
|
|
{
|
|
"name": "登录页面", //模式名称
|
|
"path": "pages/index/index", //启动页面,必选
|
|
"query": "" //启动参数,在页面的onLoad函数里面得到
|
|
}
|
|
]
|
|
}
|
|
}
|