| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- {
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- //"navigationStyle": "custom" 隐藏了才能触发自定义的
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#3F8DFD",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/register",
- "style": {
- "navigationBarTitleText": "注册",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/forget",
- "style": {
- "navigationBarTitleText": "忘记密码",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/profile/index",
- "style": {
- "navigationBarTitleText": "修改资料",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/vcard/index",
- "style": {
- "navigationBarTitleText": "电子名片",
- "navigationBarBackgroundColor": "#353F5C",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/actlist/index",
- "style": {
- "navigationBarTitleText": "活动列表",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/commission/index",
- "style": {
- "navigationBarTitleText": "佣金列表",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/comdetail/index",
- "style": {
- "navigationBarTitleText": "详情",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/cashout/index",
- "style": {
- "navigationBarTitleText": "申请提现",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/cashout/record",
- "style": {
- "navigationBarTitleText": "提现记录",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/actdetail/index",
- "style": {
- "navigationBarTitleText": "详情",
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#3F8DFD",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/bill/index",
- "style": {
- "navigationBarTitleText": "海报",
- "navigationStyle": "custom"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "uniIdRouter": {},
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|