123456789101112131415161718192021222324252627282930 |
- import { useGlobalIconFont } from './components/iconfont/helper';
- export default {
- pages: [
- 'pages/index/index',
- 'pages/user/index',
- 'pages/details/index'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#fff',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black',
- },
- usingComponents: Object.assign(useGlobalIconFont()),
- tabBar: {
- custom: true,
- list: [{
- pagePath: "pages/index/index",
- text: "首页"
- }, {
- pagePath: "pages/user/index",
- text: "我的",
- badge: '444'
- }]
- },
- // debug:true,
- // networkTimeout:1000
- }
|