| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // {
- // "path": "pages/home/home",
- // "style": {
- // "navigationBarTitleText": "卡密验证"
- // }
- // },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "卡密验证"
- }
- },
- {
- "path": "pages/gift/gift",
- "style": {
- "navigationBarTitleText": "选择礼包"
- }
- },
- {
- "path": "pages/receive/receive",
- "style": {
- "navigationBarTitleText": "领取礼包"
- }
- },
- {
- "path": "pages/logistics/logistics",
- "style": {
- "navigationBarTitleText": "兑换信息"
- }
- }
- ,{
- "path" : "pages/success/success",
- "style" : {
- "navigationBarTitleText": "兑换成功"
- }
- }
- // ,{
- // "path" : "pages/home/home",
- // "style" : {}
- // }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#EBEBEB",
- "backgroundColor": "#EBEBEB"
- }
- }
|