实验室运维app端
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.

75 lines
1.6 KiB

1 year ago
// 客服看到的菜单
1 year ago
const ordinary = [{
iconPath: "photo",
selectedIconPath: "photo-fill",
text: "工作台",
pagePath: "/pages/home/index",
},{
1 year ago
iconPath: "account",
selectedIconPath: "account-fill",
text: "我的",
pagePath: "/pages/my/my",
1 year ago
}]
// 客户看到的页面
1 year ago
const member = [{
iconPath: "photo",
selectedIconPath: "photo-fill",
text: "工作台",
pagePath: "/pages/home/index",
},
{
1 year ago
iconPath: "plus-circle",
selectedIconPath: "plus-circle-fill",
text: "一键报送",
pagePath: "/pages/submission/index",
}, {
iconPath: "account",
selectedIconPath: "account-fill",
text: "我的",
pagePath: "/pages/my/my",
},
1 year ago
]
// 维修负责人看到的页面
const manage = [{
iconPath: "photo",
selectedIconPath: "photo-fill",
text: "工作台",
pagePath: "/pages/home/index",
}, {
iconPath: "account",
selectedIconPath: "account-fill",
text: "我的",
pagePath: "/pages/my/my",
}]
// 维修人员 看到的菜单
const repair = [{
iconPath: "photo",
selectedIconPath: "photo-fill",
text: "工作台",
pagePath: "/pages/home/index",
},{
iconPath: "account",
selectedIconPath: "account-fill",
text: "我的",
pagePath: "/pages/my/my",
}]
// 未审核的账号看到的菜单
const oathTab = [{
iconPath: "photo",
selectedIconPath: "photo-fill",
text: "工作台",
pagePath: "/pages/login/authInfo",
},
{
iconPath: "account",
selectedIconPath: "account-fill",
text: "我的",
pagePath: "/pages/my/my",
}]
1 year ago
export default {
ordinary,
member,
manage,
repair,
oathTab
1 year ago
}