1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| {
| "pages": [
| "pages/index/index"
| ],
| "subPackages": [
| {
| "root": "subpackage/login",
| "pages": [
| "login"
| ]
| },
| {
| "root": "subpackage/manager",
| "pages": [
| "progress",
| "project-detail",
| "report",
| "schedule"
| ]
| },
| {
| "root": "subpackage/flowable",
| "pages": [
| "task-process",
| "process-detail"
| ]
| },
| {
| "root": "subpackage/user",
| "pages": [
| "mine",
| "functions",
| "project-detail",
| "pending"
| ]
| }
| ],
| "window": {
| "navigationBarTextStyle": "black",
| "navigationBarTitleText": "uni-app",
| "navigationBarBackgroundColor": "#F8F8F8",
| "backgroundColor": "#F8F8F8"
| },
| "lazyCodeLoading": "requiredComponents",
| "usingComponents": {
| "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
| "uni-datetime-picker": "/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker"
| }
| }
|
|