// 主管 const user_supervisors = [ { pagePath: "pages/clockIn/index", iconPath: "../../static/image/tabbar/clockIn.png", selectedIconPath: "../../static/image/tabbar/clockIn_check.png", text: "打卡", customIcon: false, }, { pagePath: "pages/attendance/index", iconPath: "../../static/image/tabbar/attendance.png", selectedIconPath: "../../static/image/tabbar/attendance_check.png", text: "考勤", customIcon: false, }, { pagePath: "pages/approval/index", iconPath: "../../static/image/tabbar/approval.png", selectedIconPath: "../../static/image/tabbar/approval_check.png", text: "审批", customIcon: false, }, { pagePath: "pages/mine/index", iconPath: "../../static/image/tabbar/mine.png", selectedIconPath: "../../static/image/tabbar/mine_check.png", text: "我的", customIcon: false, } ] // 员工 const user_staff = [ { pagePath: "pages/clockIn/index", iconPath: "../../static/image/tabbar/clockIn.png", selectedIconPath: "../../static/image/tabbar/clockIn_check.png", text: "打卡", customIcon: false, }, { pagePath: "pages/attendance/index", iconPath: "../../static/image/tabbar/attendance.png", selectedIconPath: "../../static/image/tabbar/attendance_check.png", text: "考勤", customIcon: false, }, { pagePath: "pages/mine/index", iconPath: "../../static/image/tabbar/mine.png", selectedIconPath: "../../static/image/tabbar/mine_check.png", text: "我的", customIcon: false, } ] export default { user_supervisors, user_staff }