|
@@ -42,6 +42,7 @@ export const home_homeTabArr_left = [
|
|
|
{label: "众测广场", name: "square", linkTo: '/square'},
|
|
|
// {label: "众测技术", name: "technology", linkTo: 'technology'}
|
|
|
];
|
|
|
+
|
|
|
//home_homeTabArr_right
|
|
|
export const home_homeTabArr_right = [
|
|
|
// {label: "找机构", name: "findInstitution", linkTo: '/agency/list/show'},
|
|
@@ -97,13 +98,13 @@ export const TECHNOLOGY_DISPLAY = {
|
|
|
//square页配置(导航数据 + 组件展示)
|
|
|
//square_searchTypeArr
|
|
|
export const square_searchTabArr = [
|
|
|
- { label: "项目", name: "project" },
|
|
|
- { label: "任务", name: "task" }
|
|
|
+ {label: "项目", name: "project"},
|
|
|
+ {label: "任务", name: "task"}
|
|
|
];
|
|
|
export const square_menuArr = [
|
|
|
- { label: "首页", name: "squareHome" },
|
|
|
- { label: "测试项目", name: "project" },
|
|
|
- { label: "测试任务", name: "task" }
|
|
|
+ {label: "首页", name: "squareHome"},
|
|
|
+ {label: "测试项目", name: "project"},
|
|
|
+ {label: "测试任务", name: "task"}
|
|
|
];
|
|
|
export const square_searchType = 'project';
|
|
|
export const square_currTab = 'squareHome';
|
|
@@ -112,4 +113,19 @@ export const SQUARE_DISPLAY = {
|
|
|
popular_task: true,
|
|
|
}
|
|
|
|
|
|
+//user—center侧边目录配置
|
|
|
+//个人信息
|
|
|
+export const user_info = [
|
|
|
+ {label: '基本信息', linkTo: '/personal/mine'},
|
|
|
+ {label: '我的资质', linkTo: '/personal/qualification'},
|
|
|
+ {label: '我的银行卡', linkTo: '/personal/bankCard'}
|
|
|
+];
|
|
|
+//账号安全
|
|
|
+export const account_security = [
|
|
|
+ {label: '修改登录密码', linkTo: '/personal/modifyPsw'},
|
|
|
+ // {label:'手机绑定',linkTo:'/personal/phoneBinding'},
|
|
|
+ // {label:'邮箱绑定',linkTo:'/personal/mailBinding'},
|
|
|
+ {label: '身份认证', linkTo: '/personal/authentication'},
|
|
|
+]
|
|
|
+
|
|
|
|