123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "enablePullDownRefresh": true,
- // #ifdef MP
- "navigationStyle": "custom",
- // #endif
- // #ifndef MP
- "app-plus": {
- "titleNView": false
- },
- // #endif
- "navigationBarTitleText": "星辰"
- }
- },
- {
- "path": "pages/index/happly",
- "style": {
- "enablePullDownRefresh": true,
- // #ifdef MP
- "navigationStyle": "custom",
- // #endif
- // #ifndef MP
- "app-plus": {
- "titleNView": false
- },
- // #endif
- "navigationBarTitleText": "星辰"
- }
- },
- {
- "path": "pages/index/downLoad",
- "style": {
- "navigationBarTitleText": "下载",
- "app-plus": {
- "titleNView": false
- }
- }
- }
- ],
- "subPackages": [{
- "root": "pages/set",
- "name": "set",
- "pages": [{
- "path": "phone",
- "style": {
- "navigationBarTitleText": "绑定手机"
- }
- },
- {
- "path": "password",
- "style": {
- "navigationBarTitleText": "修改密码"
- }
- },
- {
- "path": "userinfo",
- "style": {
- "navigationBarTitleText": "修改资料"
- }
- }
- ]
- },
- {
- "root": "pages/public",
- "name": "public",
- "pages": [{
- "path": "forget",
- "style": {
- "navigationBarTitleText": "忘记密码",
- "app-plus": {
- "titleNView": {
- "type": "transparent"
- }
- }
- }
- },
- {
- "path": "register",
- "style": {
- "navigationBarTitleText": "注册",
- "app-plus": {
- "titleNView": {
- "type": "transparent"
- }
- }
- }
- }, {
- "path": "login",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "titleNView": {
- "type": "transparent"
- }
- }
- }
- },
- {
- "path": "wxLogin",
- "style": {
- "navigationBarTitleText": "微信登录",
- "app-plus": {
- "titleNView": {
- "type": "transparent"
- }
- }
- }
- }
- ]
- },
- {
- "root": "pages/user",
- "name": "user",
- "pages": [{
- "path": "about",
- "style": {
- "navigationBarTitleText": "隐私协议"
- }
- }]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "加载中",
- "navigationBarBackgroundColor": "#fff",
- // "titleNView": false
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#999",
- "selectedColor": "#222",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabBar/tab-00.png",
- "selectedIconPath": "static/tabBar/tab-00-current.png",
- "text": "首页"
- }, {
- "pagePath": "pages/index/game",
- "iconPath": "static/tabBar/tab-01.png",
- "selectedIconPath": "static/tabBar/tab-01-current.png",
- "text": "盲盒"
- },
- {
- "pagePath": "pages/index/happly",
- "iconPath": "static/tabBar/tab-02.png",
- "selectedIconPath": "static/tabBar/tab-02-current.png",
- "text": "娱乐"
- },
- {
- "pagePath": "pages/store_cate/store_cate",
- "iconPath": "static/tabBar/tab-03.png",
- "selectedIconPath": "static/tabBar/tab-03-current.png",
- "text": "联盟"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/tabBar/tab-04.png",
- "selectedIconPath": "static/tabBar/tab-04-current.png",
- "text": "我的"
- }
- ]
- }
- }
|