123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/home/home",
- "style": {
- "navigationBarTitleText": "个人任务管理",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/user/user",
- "style": {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/task/task",
- "style": {
- "navigationBarTitleText": "任务列表",
- "enablePullDownRefresh": false
- }
- }
- ,{
- "path" : "pages/dayreport/dayreport",
- "style" :
- {
- "navigationBarTitleText": "个人汇报",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/monthreport/monthreport",
- "style" :
- {
- "navigationBarTitleText": "个人月报",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/dayreportform/dayreportform",
- "style" :
- {
- "navigationBarTitleText": "日汇报报表",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#007AFF",
- "backgroundColor": "#007AFF",
- "navigationBarTextStyle": "white"
- }
- }
|