|
@@ -222,7 +222,7 @@ const enterprise = [
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/enterprisePurchasePackage',
|
|
|
+ path: '/enterprise/purchasePackage',
|
|
|
component: Layout,
|
|
|
name: 'enterprisePurchasePackage',
|
|
|
show: true,
|
|
@@ -231,7 +231,7 @@ const enterprise = [
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
|
- path: '/enterprisePurchasePackage',
|
|
|
+ path: '/enterprise/purchasePackage',
|
|
|
component: () => import('@/views/enterprise/purchasePackage/index'),
|
|
|
meta: {
|
|
|
title: '购买套餐',
|
|
@@ -240,5 +240,24 @@ const enterprise = [
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/enterprise/myAccount',
|
|
|
+ component: Layout,
|
|
|
+ name: 'enterpriseMyAccount',
|
|
|
+ show: true,
|
|
|
+ meta: {
|
|
|
+ title: '我的账户',
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/enterprise/myAccount',
|
|
|
+ component: () => import('@/views/enterprise/myAccount/index'),
|
|
|
+ meta: {
|
|
|
+ title: '我的账户',
|
|
|
+ hideSide: true
|
|
|
+ },
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
]
|
|
|
export default enterprise
|