| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "打卡结算",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText" : "登录"
- }
- },
- {
- "path" : "pages/user-info/user-info",
- "style" :
- {
- "navigationBarTitleText" : "用户中心"
- }
- },
- {
- "path" : "pages/punchin-edit/punchin-edit",
- "style" :
- {
- "navigationBarTitleText" : "编辑"
- }
- },
- {
- "path" : "pages/punchin-detail/punchin-detail",
- "style" :
- {
- "navigationBarTitleText" : "",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/settle-list/settle-list",
- "style" :
- {
- "navigationBarTitleText" : "奖励结算记录",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/scratch-record-list/scratch-record-list",
- "style" :
- {
- "navigationBarTitleText" : "刮刮乐投入与中奖记录",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/reward-record-list/reward-record-list",
- "style" :
- {
- "navigationBarTitleText" : "奖励领取记录",
- "enablePullDownRefresh": true
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom"
- },
- "uniIdRouter": {}
- }
|