You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.5 KiB
JavaScript

3 months ago
// 主管
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
}