zhangmeng
2024-04-19 e3ba120cb766a17e098e58d11c39ffc600a3070c
commit | author | age
e3ba12 1 {
Z 2     "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
3         {
4             "path": "pages/login/index",
5             "style": {
6                 "navigationBarTitleText": "登录",
7                 "navigationStyle": "custom"
8             }
9         },
10         {
11             "path": "pages/index/index",
12             "style": {
13                 "navigationBarTitleText": "首页",
14                 "navigationStyle": "custom"
15             }
16         },
17         {
18             "path": "pages/work/index",
19             "style": {
20                 "navigationBarTitleText": "工作台",
21                 "navigationStyle": "custom"
22             }
23         },
24         {
25             "path": "pages/work/user/list",
26             "style": {
27                 "navigationBarTitleText": "用户管理",
28                 "navigationStyle": "custom"
29             }
30         },
31         {
32             "path": "pages/work/user/edit",
33             "style": {
34                 "navigationBarTitleText": "用户详情",
35                 "navigationStyle": "custom"
36             }
37         },
38         {
39             "path": "pages/work/notice/list",
40             "style": {
41                 "navigationBarTitleText": "通知公告",
42                 "navigationStyle": "custom"
43             }
44         },
45         {
46             "path": "pages/work/notice/manage",
47             "style": {
48                 "navigationBarTitleText": "公告管理",
49                 "navigationStyle": "custom"
50             }
51         },
52         {
53             "path": "pages/work/notice/detail",
54             "style": {
55                 "navigationBarTitleText": "公告详情",
56                 "navigationStyle": "custom"
57             }
58         },
59         {
60             "path": "pages/work/notice/edit",
61             "style": {
62                 "navigationBarTitleText": "公告详情",
63                 "navigationStyle": "custom"
64             }
65         },
66         {
67             "path": "pages/center/index",
68             "style": {
69                 "navigationBarTitleText": "我的",
70                 "navigationStyle": "custom"
71             }
72         },
73         {
74             "path": "pages/center/profile",
75             "style": {
76                 "navigationBarTitleText": "个人资料",
77                 "navigationStyle": "custom"
78             }
79         },
80         {
81             "path": "pages/center/log",
82             "style": {
83                 "navigationBarTitleText": "操作日志",
84                 "navigationStyle": "custom"
85             }
86         }
87     ],
88     "tabBar": {
89         "color": "#909399",
90         "selectedColor": "#000000",
91         "borderStyle": "black",
92         "backgroundColor": "#ffffff",
93         "list": [{
94             "pagePath": "pages/index/index",
95             "iconPath": "static/img/tabbar/home.png",
96             "selectedIconPath": "static/img/tabbar/home_art.png",
97             "text": "首页"
98         }, {
99             "pagePath": "pages/work/index",
100             "iconPath": "static/img/tabbar/center.png",
101             "selectedIconPath": "static/img/tabbar/center_art.png",
102             "text": "工作台"
103         }, {
104             "pagePath": "pages/center/index",
105             "iconPath": "static/img/tabbar/user.png",
106             "selectedIconPath": "static/img/tabbar/user_art.png",
107             "text": "我的"
108         }]
109     },
110     "globalStyle": {
111         "navigationBarTextStyle": "black",
112         "navigationBarTitleText": "uni-app",
113         "navigationBarBackgroundColor": "#F8F8F8",
114         "backgroundColor": "#F8F8F8",
115     "app-plus": {
116       "softinputMode": "adjustResize"
117     }
118     },
119     "easycom": {
120         "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
121     }
122 }