YingXingAI/config/tabbar.config.js

48 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* TabBar 配置文件
* 集中管理底部导航栏配置
*/
export const TAB_BAR_CONFIG = [
{
text: "在线咨询",
icon: "/static/tabbar/tabbar-icon1.png",
activeIcon: "/static/tabbar/tabbar-icon1-active.png",
pagePath: "/pages/consultation/index",
// 可选配置
badge: "", // 角标文字
dot: false, // 是否显示小红点
},
{
text: "人工转接",
icon: "/static/tabbar/tabbar-icon4.png",
activeIcon: "/static/tabbar/tabbar-icon4-active.png",
pagePath: "/pages/transfer/index",
badge: "",
dot: false,
},
{
text: "我的",
icon: "/static/tabbar/tabbar-icon3.png",
activeIcon: "/static/tabbar/tabbar-icon3-active.png",
pagePath: "/pages/my/index",
badge: "",
dot: false,
},
];
// TabBar 样式配置
export const TAB_BAR_STYLE = {
color: "#999999", // 未激活颜色
selectedColor: "#4a6cf7", // 激活颜色
backgroundColor: "#ffffff", // 背景色
borderTop: false, // 是否显示顶部边框
height: 148, // 高度rpx
};
export default {
tabs: TAB_BAR_CONFIG,
style: TAB_BAR_STYLE,
};