@@ -27,6 +27,11 @@
component: './Member',
},
{
+ path: '/information',
+ name: 'information',
+ component: './Information',
+ },
+ {
path: '/member/invalid',
name: 'member.invalid',
component: './Member/invalid',
@@ -19,7 +19,7 @@ export default function () {
icon: homeImgMap.staff,
- id: 'company',
+ id: 'information',
title: '企业信息',
@@ -0,0 +1,3 @@
+export default () => {
+ return <div>企业信息页面</div>;
+};