Blame view

pages.json 3.53 KB
c293da23   刘淇   新园林init
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
  {
  	"pages": [
  		{
  			"path": "pages/login/index",
  			"style": {
  				"navigationBarTitleText": "登录"
  			}
  		},
  		{
  			"path": "pages/index/index",
  			"style": {
  				"navigationBarTitleText": "首页"
  			}
  		},
  		{
  			"path": "pages/workbench/index",
  			"style": {
  				"navigationBarTitleText": "工作台"
  			}
  		},
  		{
  			"path": "pages/mine/index",
  			"style": {
  				"navigationBarTitleText": "我的"
  			}
  		}
  	],
  	"subPackages": [
  		{
  			"root": "pages-sub/daily",
  			"pages": [
  				{
a2702f6d   刘淇   巡查计划
33
  					"path": "patrol-manage/patrol-plan/index",
c293da23   刘淇   新园林init
34
35
36
37
38
39
  					"style": {
  						"navigationBarTitleText": "巡查计划",
  						"enablePullDownRefresh": false
  					}
  				},
  				{
a2702f6d   刘淇   巡查计划
40
  					"path": "patrol-manage/pending-plan-detail/index",
c293da23   刘淇   新园林init
41
  					"style": {
a2702f6d   刘淇   巡查计划
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  						"navigationBarTitleText": "待完成计划明细",
  						"enablePullDownRefresh": false
  					}
  				},
  
  				{
  					"path": "patrol-manage/finish-plan-detail/index",
  					"style": {
  						"navigationBarTitleText": "已完成计划明细",
  						"enablePullDownRefresh": false
  					}
  				},
  
  				{
  					"path": "patrol-manage/add-patrol-record/index",
  					"style": {
  						"navigationBarTitleText": "添加巡查记录",
  						"enablePullDownRefresh": false
c293da23   刘淇   新园林init
60
61
  					}
  				},
a2702f6d   刘淇   巡查计划
62
63
  
  
c293da23   刘淇   新园林init
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
  				{
  					"path": "work-order/index",
  					"style": { "navigationBarTitleText": "工单上报" }
  				},
  				{
  					"path": "quick-order/index",
  					"style": { "navigationBarTitleText": "快速工单" }
  				},
  				{
  					"path": "12345-order/index",
  					"style": { "navigationBarTitleText": "12345工单" }
  				},
  				{
  					"path": "patrol-manage/index",
  					"style": { "navigationBarTitleText": "巡查管理" }
  				},
  				{
  					"path": "maintain-manage/index",
  					"style": { "navigationBarTitleText": "养护管理" }
  				}
  			]
  		},
  		{
  			"root": "pages-sub/problem",
  			"pages": [
  				{
  					"path": "order-manage/index",
  					"style": { "navigationBarTitleText": "工单管理" }
  				},
  				{
  					"path": "problem-allot/index",
  					"style": { "navigationBarTitleText": "问题分配" }
  				}
  			]
  		},
  		{
  			"root": "pages-sub/data",
  			"pages": [
  				{
  					"path": "base-data/index",
  					"style": { "navigationBarTitleText": "基础数据" }
  				},
  				{
  					"path": "personnel-track/index",
  					"style": { "navigationBarTitleText": "人员轨迹" }
  				},
  				{
  					"path": "personnel-manage/index",
  					"style": { "navigationBarTitleText": "人员管理" }
  				},
  				{
  					"path": "tree-archive/index",
  					"style": { "navigationBarTitleText": "行道树档案" }
  				}
  			]
  		}
  	],
  	"tabBar": {
  		"color": "#666666",
  		"selectedColor": "#1989fa",
  		"borderStyle": "black",
  		"backgroundColor": "#ffffff",
  		"list": [
  			{
  				"pagePath": "pages/index/index",
  				"text": "首页",
  				"iconPath": "static/icons/home.png",
  				"selectedIconPath": "static/icons/home-active.png"
  			},
  			{
  				"pagePath": "pages/workbench/index",
  				"text": "工作台",
  				"iconPath": "static/icons/mine.png",
  				"selectedIconPath": "static/icons/mine-active.png"
  			},
  			{
  				"pagePath": "pages/mine/index",
  				"text": "我的",
  				"iconPath": "static/icons/mine.png",
  				"selectedIconPath": "static/icons/mine-active.png"
  			}
  		]
  	},
  	"easycom": {
  		"autoscan": true,
  
  		"custom": {
  			"^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  			"^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  			"^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
  		}
  	},
  	"globalStyle": {
  		"navigationBarTextStyle": "black",
  		"navigationBarTitleText": "JCSS管理系统",
  		"navigationBarBackgroundColor": "#ffffff",
  		"backgroundColor": "#f8f8f8"
  	}
  }