1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "承揽时代"
- }
- },
- {
- "path": "pages/packages/index",
- "style": {
- "navigationBarTitleText": "接包",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/user/login",
- "style": {
- "navigationBarTitleText": "用户登录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/auth/index",
- "style": {
- "navigationBarTitleText": "实名认证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/company/index",
- "style": {
- "navigationBarTitleText": "关联企业",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/company/search",
- "style": {
- "navigationBarTitleText": "手动关联",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/user/info",
- "style": {
- "navigationBarTitleText": "个人信息",
- "enablePullDownRefresh": false
- }
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#4581fb",
- "borderStyle": "black",
- "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tab/sy.png",
- "selectedIconPath": "static/tab/sy_s.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/packages/index",
- "iconPath": "static/tab/jb.png",
- "selectedIconPath": "static/tab/jb_s.png",
- "text": "承揽广场"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/tab/my.png",
- "selectedIconPath": "static/tab/my_s.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "承揽时代",
- "navigationBarBackgroundColor": "#f8f8f8"
- }
- }
|