export type TabBar = { /** * 是否使用自定义 tab */ custom?: boolean; borderStyle?: 'white' | 'black'; /** * 导航文本色 */ textColor?: string; /** * 导航文本高亮色 */ selectedColor?: string; /** * 导航栏背景色 */ backgroundColor?: string; /** * 导航栏列表 */ list?: { text: string; icon?: string; route?: string; activeIcon?: string; pagePath: string; }[]; };