12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/index/index",
- "style" :
- {
- "navigationBarTitleText": "商品详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/information/information",
- "style" :
- {
- "navigationBarTitleText": "购买信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/address/address",
- "style" :
- {
- "navigationBarTitleText": "收货人地址",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/orderPlacer/orderPlacer",
- "style" :
- {
- "navigationBarTitleText": "下单人",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/phone-area/phone-area",
- "style": {
- "navigationBarTitleText": "选择国家/地区"
- }
- },
- {
- "path": "pages/orderDetail/detail",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/pay-status/pay-status",
- "style": {
- "navigationBarTitleText": "下单成功"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationStyle": "custom",
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }
|