You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
![]()
1 year ago
|
// 全局配置
|
||
|
const RefreshOption = {
|
||
|
// 背景色
|
||
|
pageBg: '#FFFFFF',
|
||
|
// 导航栏颜色
|
||
|
barColor: '#2fa1f0',
|
||
|
// 是否有返回键(会自动判断是否可返回)
|
||
|
hasBack: true,
|
||
|
// 首页
|
||
|
homePagePath: '../../pages/home/FindFragment',
|
||
|
// 首页是否是切换的页面
|
||
|
homePageIsTabBar: true,
|
||
|
// 返回键
|
||
|
backIcon: '../../static/img/public/back.png',
|
||
|
// 主页
|
||
|
homeIcon: '../../static/img/public/home.png'
|
||
|
}
|
||
|
|
||
|
export default RefreshOption
|