1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "pages": [
- // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/down",
- "style": {
- "navigationBarTitleText": "下载",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/payCentre",
- "style": {
- "navigationBarTitleText": "支付中",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/paySuccess",
- "style": {
- "navigationBarTitleText": "支付成功",
- "navigationStyle": "custom"
- }
- },
- // {
- // "path": "pages/index",
- // "style": {
- // "navigationBarTitleText": "松河生活商城",
- // "navigationStyle": "custom"
- // }
- // },
- // {
- // "path": "pages/register",
- // "style": {
- // "navigationBarTitleText": "注册",
- // "navigationStyle": "custom"
- // }
- // },
- {
- "path": "pages/agreement",
- "style": {
- "navigationBarTitleText": "协议",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/serviceOrPrivacy",
- "style": {
- "navigationBarTitleText": "服务协议",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/phone",
- "style": {
- "navigationBarTitleText": "咨询电话",
- "navigationStyle": "custom"
- }
- }
- // {
- // "path":"pages/login",
- // "style":{
- // "navigationBarTitleText":"授权"//支付宝登录
- // }
- // }
- ],
- "globalStyle": {
- "pageOrientation": "portrait",
- "navigationBarTextStyle": "black",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8",
- "backgroundColorTop": "#F4F5F6",
- "backgroundColorBottom": "#F4F5F6",
- // "navigationStyle": "custom",
- "app-plus": {
- "titleView": true,
- "optimization": {
- "subPackages": true
- },
- "runmode": "liberate" // 开启分包优化后,必须配置资源释放模式
- }
- }
- }
|