/
githubmirror
/
taro
Обзор
Документация
Войти
/
githubmirror
/
taro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/custom-tabbar-react/src/app.config.ts
46 строк
1 KB
chenjiajian
chore: 增加使用自定义 TabBar 的 Demo
24 фев 2022, 15:53
24 фев 2022, 15:53
02db45a
Код
Авторство
О чём код?
export default defineAppConfig({ pages: [ 'pages/index/index', 'pages/cate/index', 'pages/cart/index', 'pages/my/index' ], window: { backgroundTextStyle: 'light', navigationBarBackgroundColor: '#fff', navigationBarTitleText: 'WeChat', navigationBarTextStyle: 'black' }, tabBar: { custom: true, color: '#000000', selectedColor: '#DC143C', backgroundColor: '#ffffff', list: [ { pagePath: 'pages/index/index', selectedIconPath: 'images/tabbar_home_on.png', iconPath: 'images/tabbar_home.png', text: '首页' }, { pagePath: 'pages/cate/index', selectedIconPath: 'images/tabbar_cate_on.png', iconPath: 'images/tabbar_cate.png', text: '分类' }, { pagePath: 'pages/cart/index', selectedIconPath: 'images/tabbar_cart_on.png', iconPath: 'images/tabbar_cart.png', text: '购物车' }, { pagePath: 'pages/my/index', selectedIconPath: 'images/tabbar_my_on.png', iconPath: 'images/tabbar_my.png', text: '个人中心' } ] } })