1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "会员/套餐",
- "enablePullDownRefresh": true,
- "navigationBarBackgroundColor": "#58c4c4"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- }, {
- "path": "pages/login/phoneLogin",
- "style": {
- "navigationBarTitleText": "手机号登录"
- }
- },
- {
- "path": "pages/about",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "pages/xieyi/index",
- "style": {
- "navigationBarTitleText": "用户协议和隐私政策"
- }
- },
- {
- "path": "pages/h5Page/index",
- "style": {
- "navigationBarTitleText": "h5"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|