| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "TabBar": "@/components/tab-bar/tab-bar.vue",
- "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
- "^u-(.*)": "@components/u-$1/u-$1.vue",
- "^qiun-(.*)": "@/components/uCharts/qiun-$1/qiun-$1.vue",
- "^vb-(.*)": "@/components/vber/$1/vb-$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/welcome",
- "style": {
- "navigationBarTitleText": "Vber移动端"
- }
- },
- {
- "path": "pages/account/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/account/register",
- "style": {
- "navigationBarTitleText": "注册新用户"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/mine/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/account/forgetPwd",
- "style": {
- "navigationBarTitleText": "忘记密码"
- }
- },
- {
- "path": "pages/account/systemLogin",
- "style": {
- "navigationBarTitleText": "后台管理系统"
- }
- },
- {
- "path": "pages/work/index",
- "style": {
- "navigationBarTitleText": "工作台"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages-sub/mine",
- "pages": [
- {
- "path": "profile/edit",
- "style": {
- "navigationBarTitleText": "完善个人信息"
- }
- },
- {
- "path": "profile/avatar",
- "style": {
- "navigationBarTitleText": "上传头像"
- }
- },
- {
- "path": "setting",
- "style": {
- "navigationBarTitleText": "应用设置"
- }
- },
- {
- "path": "privacy",
- "style": {
- "navigationBarTitleText": "隐私设置"
- }
- },
- {
- "path": "pwd",
- "style": {
- "navigationBarTitleText": "修改密码"
- }
- },
- {
- "path": "about",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "help",
- "style": {
- "navigationBarTitleText": "常见问题"
- }
- }
- ]
- },
- {
- "root": "pages-sub/common",
- "pages": [
- {
- "path": "textview",
- "style": {
- "navigationBarTitleText": "浏览文本"
- }
- },
- {
- "path": "webview",
- "style": {
- "navigationBarTitleText": "浏览网页"
- }
- }
- ]
- }
- ],
- "tabBar": {
- "custom": false,
- "color": "#8a8a8a",
- "selectedColor": "#1989fa",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/home.png",
- "selectedIconPath": "static/images/tabbar/home2.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/work/index",
- "iconPath": "static/images/tabbar/work.png",
- "selectedIconPath": "static/images/tabbar/work2.png",
- "text": "工作台"
- },
- {
- "pagePath": "pages/mine/index",
- "iconPath": "static/images/tabbar/mine.png",
- "selectedIconPath": "static/images/tabbar/mine2.png",
- "text": "个人中心"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTitleText": "Vber移动端",
- "navigationBarTextStyle": "white",
- //"navigationBarBackgroundColor": "#0e9489",
- "navigationBarBackgroundColor": "#1989fa",
- "backgroundColor": "#F8F8F8"
- },
- "lazyCodeLoading": "requiredComponents"
- }
|