12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
- "^zhao-(.*)": "@/components/zhao-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "粉丝私域服务中心"
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- }
- ],
- "subPackages": [{
- "root": "pageA",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "xieyi",
- "style": {
- "navigationBarTitleText": "用户协议",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "yinsi",
- "style": {
- "navigationBarTitleText": "隐私政策",
- "enablePullDownRefresh": false
- }
- }
- ]
- }],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "粉丝私域服务中心",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "selectedColor": "#57C2F4",
- "color": "#7A7A7A ",
- "list": [{
- "iconPath": "/static/images/index.png",
- "selectedIconPath": "/static/images/index1.png",
- "text": "首页",
- "pagePath": "pages/index/index"
- }, {
- "iconPath": "/static/images/mine.png",
- "selectedIconPath": "/static/images/mine1.png",
- "text": "我的",
- "pagePath": "pages/mine/mine"
- }]
- }
- }
|