Blame view

pages.json 9.75 KB
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  {
    "leftWindow": {
      "path": "windows/left-window.vue",
      "style": {
        "width": "350px"
      }
    },
    "topWindow": {
      "path": "windows/top-window.vue",
      "style": {
        "height": "60px"
      }
    },
    "pages": [
      // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
e3eb21f6   刘淇   发放券
16
  
4b045f7c   刘淇   江阴初始化项目
17
      {
e3eb21f6   刘淇   发放券
18
        "path": "pages/businessCard/provideCard",
19569f2b   刘淇   购买券
19
        "style": {
e3eb21f6   刘淇   发放券
20
          "navigationBarTitleText": "发放卡券"
19569f2b   刘淇   购买券
21
22
        }
      },
e3eb21f6   刘淇   发放券
23
  
19569f2b   刘淇   购买券
24
      {
4b045f7c   刘淇   江阴初始化项目
25
26
27
28
29
30
        "path": "pages/businessCard/businessCard",
        "style": {
          "navigationBarTitleText": "商户卡券"
        }
      },
      {
e3eb21f6   刘淇   发放券
31
32
33
34
35
36
37
38
39
40
41
42
43
        "path": "pages/businessCard/cardDetail",
        "style": {
          "navigationBarTitleText": "卡券申领明细"
        }
      },
      {
        "path": "pages/businessCard/buyCard",
        "style": {
          "navigationBarTitleText": "商户卡券购买"
        }
      },
  
      {
4b045f7c   刘淇   江阴初始化项目
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
        "path": "pages/parkRecordList/recordDetail",
        "style": {
          "navigationBarTitleText": "订单详情"
        }
      },
      {
        "path": "pages/parkRecordList/parkRecordList",
        "style": {
          "navigationBarTitleText": "停车记录"
        }
      },
      {
        "path": "pages/parkPay/parkPay",
        "style": {
          "navigationBarTitleText": "支付"
        }
      },
      {
        "path": "pages/inputCarNumber/inputCarNumber",
        "style": {
          "navigationBarTitleText": "停车缴费"
        }
      },
      {
        "path": "pages/moneyRecharge/moneyRecharge",
        "style": {
          "navigationBarTitleText": "钱包充值"
        }
      },
      {
        "path": "pages/tabBar/component/component",
        "style": {
          "navigationBarTitleText": "内置组件",
          "app-plus": {
            "bounce": "vertical",
            "titleNView": {
              "buttons": [
                {
                  "text": "\ue534",
                  "fontSrc": "/static/uni.ttf",
                  "fontSize": "22px",
                  "color": "#FFFFFF"
                }
              ]
            }
          }
        }
      },
      {
        "path": "pages/tabBar/extUI/extUI",
        "style": {
          "navigationBarTitleText": "扩展组件",
          "app-plus": {
            "titleNView": {
              "buttons": [
                {
                  "text": "\ue534",
                  "fontSrc": "/static/uni.ttf",
                  "fontSize": "22px",
                  "color": "#FFFFFF"
                }
              ]
            }
          }
        }
      },
      {
        "path": "pages/rechargeDetail/rechargeDetail",
        "style": {
          "navigationBarTitleText": "充值明细"
        }
      },
      {
        "path": "pages/rechargeDetail/outDetail",
        "style": {
          "navigationBarTitleText": "账单详情"
        }
2d70f5ed   chenbiao   add gitignore
121
122
123
124
125
126
127
      },
  	{
  	  "path": "pages/index/index",
  	  "style": {
  	    "navigationBarTitleText": "商户管理"
  	  }
  	}
4b045f7c   刘淇   江阴初始化项目
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
163
164
165
    ],
    "globalStyle": {
      "pageOrientation": "portrait",
      "navigationBarTitleText": "Hello uniapp",
      "navigationBarTextStyle": "white",
      "navigationBarBackgroundColor": "#007AFF",
      "backgroundColor": "#F8F8F8",
      "backgroundColorTop": "#F4F5F6",
      "backgroundColorBottom": "#F4F5F6",
      "mp-360": {
        "navigationStyle": "custom"
      },
      "h5": {
        "maxWidth": 1190,
        "navigationBarTextStyle": "black",
        "navigationBarBackgroundColor": "#F1F1F1"
      }
    },
    "tabBar": {
      "color": "#7A7E83",
      "selectedColor": "#007AFF",
      "borderStyle": "black",
      "backgroundColor": "#F8F8F8",
      "list": [
        {
          "pagePath": "pages/tabBar/component/component",
          "iconPath": "static/component.png",
          "selectedIconPath": "static/componentHL.png",
          "text": "内置组件"
        },
        {
          "pagePath": "pages/tabBar/extUI/extUI",
          "iconPath": "static/extui.png",
          "selectedIconPath": "static/extuiHL.png",
          "text": "扩展组件"
        }
      ]
    }
48e03f64   chenbiao   add
166
167
168
169
  	"leftWindow": {
  		"path": "windows/left-window.vue",
  		"style": {
  			"width": "350px"
48ab2c65   chenbiao   add 首页 设置 发票申领
170
  		}
48e03f64   chenbiao   add
171
172
173
174
175
  	},
  	"topWindow": {
  		"path": "windows/top-window.vue",
  		"style": {
  			"height": "60px"
48ab2c65   chenbiao   add 首页 设置 发票申领
176
  		}
48e03f64   chenbiao   add
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  	},
  	"pages": [
  		// pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  		{
  			"path": "pages/businessCard/buyCard",
  			"style": {
  				"navigationBarTitleText": "商户卡券购买"
  			}
  		},
  		{
  			"path": "pages/businessCard/businessCard",
  			"style": {
  				"navigationBarTitleText": "商户卡券"
  			}
  		},
  		{
  			"path": "pages/parkRecordList/recordDetail",
  			"style": {
  				"navigationBarTitleText": "订单详情"
  			}
  		},
  		{
  			"path": "pages/parkRecordList/parkRecordList",
  			"style": {
  				"navigationBarTitleText": "停车记录"
  			}
  		},
  		{
  			"path": "pages/parkPay/parkPay",
  			"style": {
  				"navigationBarTitleText": "支付"
  			}
  		},
  		{
  			"path": "pages/inputCarNumber/inputCarNumber",
  			"style": {
  				"navigationBarTitleText": "停车缴费"
  			}
  		},
  		{
  			"path": "pages/moneyRecharge/moneyRecharge",
  			"style": {
  				"navigationBarTitleText": "钱包充值"
  			}
  		},
  		{
  			"path": "pages/tabBar/component/component",
  			"style": {
  				"navigationBarTitleText": "内置组件",
  				"app-plus": {
  					"bounce": "vertical",
  					"titleNView": {
  						"buttons": [{
  							"text": "\ue534",
  							"fontSrc": "/static/uni.ttf",
  							"fontSize": "22px",
  							"color": "#FFFFFF"
  						}]
  					}
  				}
  			}
  		},
  		{
  			"path": "pages/tabBar/extUI/extUI",
  			"style": {
  				"navigationBarTitleText": "扩展组件",
  				"app-plus": {
  					"titleNView": {
  						"buttons": [{
  							"text": "\ue534",
  							"fontSrc": "/static/uni.ttf",
  							"fontSize": "22px",
  							"color": "#FFFFFF"
  						}]
  					}
  				}
  			}
  		},
  		{
  			"path": "pages/rechargeDetail/rechargeDetail",
  			"style": {
  				"navigationBarTitleText": "充值明细"
  			}
  		},
  		{
  			"path": "pages/rechargeDetail/outDetail",
  			"style": {
  				"navigationBarTitleText": "账单详情"
  			}
  		},
  		{
  			"path": "pages/index/index",
  			"style": {
  				"navigationBarTitleText": "商户管理"
  			}
  		}, {
  			"path": "pages/login/login",
  			"style": {
  				"navigationBarTitleText": "商户中心",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/setting/setting",
  			"style": {
  				"navigationBarTitleText": "设置",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/manuals/manuals",
  			"style": {
  				"navigationBarTitleText": "使用指南",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/aboutOur/aboutOur",
  			"style": {
  				"navigationBarTitleText": "关于我们",
  				"enablePullDownRefresh": false
  			}
  
  		},
  		{
  			"path": "pages/invoiceClaim/invoiceClaim",
  			"style": {
  				"navigationBarTitleText": "发票申领",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/billing/billing",
  			"style": {
  				"navigationBarTitleText": "发票申领",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/invoiceRecord/invoiceRecord",
  			"style": {
  				"navigationBarTitleText": "开票历史",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/invoiceForm/invoiceForm",
  			"style": {
  				"navigationBarTitleText": "开票历史",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/elecRecord/elecRecord",
  			"style": {
  				"navigationBarTitleText": "电子包含记录",
  				"enablePullDownRefresh": false
  			}
  
  		}, {
  			"path": "pages/invoicePreview/invoicePreview",
  			"style": {
  				"navigationBarTitleText": "发票预览",
  				"enablePullDownRefresh": false
  			}
  
48ab2c65   chenbiao   add 首页 设置 发票申领
343
  		}
9c71fb38   chenbiao   add 开票信息确认页面
344
345
  	    ,{
              "path" : "pages/invoiceInformation/invoiceInformation",
6f829172   刘淇   Merge branch 'bra...
346
              "style" :
9c71fb38   chenbiao   add 开票信息确认页面
347
348
349
350
              {
                  "navigationBarTitleText": "开票信息确认",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
351
  
9c71fb38   chenbiao   add 开票信息确认页面
352
          }
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
353
354
          ,{
              "path" : "pages/invoiceTitle/invoiceTitle",
6f829172   刘淇   Merge branch 'bra...
355
              "style" :
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
356
357
358
359
              {
                  "navigationBarTitleText": "发票抬头",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
360
  
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
361
362
363
          }
          ,{
              "path" : "pages/companyMsg/companyMsg",
6f829172   刘淇   Merge branch 'bra...
364
              "style" :
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
365
366
367
368
              {
                  "navigationBarTitleText": "详情",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
369
  
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
370
371
372
          }
          ,{
              "path" : "pages/addTitle/addTitle",
6f829172   刘淇   Merge branch 'bra...
373
              "style" :
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
374
              {
1b44ac51   chenbiao   add 信用等级 实名认证form表单
375
                  "navigationBarTitleText": "添加抬头",
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
376
377
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
378
  
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
379
380
381
          }
          ,{
              "path" : "pages/editTitle/editTitle",
6f829172   刘淇   Merge branch 'bra...
382
              "style" :
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
383
384
385
386
              {
                  "navigationBarTitleText": "编辑抬头",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
387
  
7f3bad7f   chenbiao   add 发票抬头:查看 编辑 新增...
388
          }
1b44ac51   chenbiao   add 信用等级 实名认证form表单
389
390
          ,{
              "path" : "pages/creditRating/creditRating",
6f829172   刘淇   Merge branch 'bra...
391
              "style" :
1b44ac51   chenbiao   add 信用等级 实名认证form表单
392
393
394
395
              {
                  "navigationBarTitleText": "信用等级",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
396
  
1b44ac51   chenbiao   add 信用等级 实名认证form表单
397
398
399
          }
          ,{
              "path" : "pages/nameAuthentication/nameAuthentication",
6f829172   刘淇   Merge branch 'bra...
400
              "style" :
1b44ac51   chenbiao   add 信用等级 实名认证form表单
401
402
403
404
              {
                  "navigationBarTitleText": "实名认证",
                  "enablePullDownRefresh": false
              }
6f829172   刘淇   Merge branch 'bra...
405
  
1b44ac51   chenbiao   add 信用等级 实名认证form表单
406
          }
9c71fb38   chenbiao   add 开票信息确认页面
407
      ],
48e03f64   chenbiao   add
408
409
410
411
412
413
414
415
416
417
418
419
420
  	"globalStyle": {
  		"navigationBarTextStyle": "black",
  		"navigationBarTitleText": "停车小码头",
  		"navigationBarBackgroundColor": "#F8F8F8",
  		"backgroundColor": "#F8F8F8",
  		"pageOrientation": "portrait",
  		"mp-360": {
  			"navigationStyle": "custom"
  		},
  		"h5": {
  			"maxWidth": 1190,
  			"navigationBarTextStyle": "black",
  			"navigationBarBackgroundColor": "#F1F1F1"
48ab2c65   chenbiao   add 首页 设置 发票申领
421
  		}
48e03f64   chenbiao   add
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
  	},
  	"tabBar": {
  		"color": "#7A7E83",
  		"selectedColor": "#007AFF",
  		"borderStyle": "black",
  		"backgroundColor": "#FFF",
  		"list": [{
  				"pagePath": "pages/tabBar/component/component",
  				"iconPath": "static/component.png",
  				"selectedIconPath": "static/componentHL.png",
  				"text": "内置组件"
  			},
  			{
  				"pagePath": "pages/tabBar/extUI/extUI",
  				"iconPath": "static/extui.png",
  				"selectedIconPath": "static/extuiHL.png",
  				"text": "扩展组件"
  			}
  		]
  	}
237535d0   刘淇   江阴初始化项目
442
  }