|
@@ -19,49 +19,66 @@ const globalRoutes = [
|
|
|
]
|
|
|
|
|
|
// 参猫
|
|
|
-export const toolsRoutes = [
|
|
|
+export const toolsNav0 = [
|
|
|
{
|
|
|
path: '/tools-analyze',
|
|
|
component: _import('modules/tools/tools-analyze'),
|
|
|
name: 'toolsAnalyze',
|
|
|
meta: { title: '任意竞品透析' }
|
|
|
},
|
|
|
- {
|
|
|
- path: '/tools-credit',
|
|
|
- component: _import('modules/tools/tools-credit'),
|
|
|
- name: 'toolsCredit',
|
|
|
- meta: { title: '淘宝极速验号' }
|
|
|
- },
|
|
|
{
|
|
|
path: '/tools-online',
|
|
|
component: _import('modules/tools/tools-online'),
|
|
|
name: 'toolsOnline',
|
|
|
meta: { title: '在线指数还原' }
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+export const toolsNav1 = [
|
|
|
+ {
|
|
|
+ path: '/tools-credit',
|
|
|
+ component: _import('modules/tools/tools-credit'),
|
|
|
+ name: 'toolsCredit',
|
|
|
+ meta: { title: '淘宝极速验号' }
|
|
|
},
|
|
|
{
|
|
|
path: '/tools-ordersearch',
|
|
|
component: _import('modules/tools/tools-ordersearch'),
|
|
|
name: 'toolsOrdersearch',
|
|
|
meta: { title: '淘客订单查询' }
|
|
|
- },
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+export const toolsNav2 = [
|
|
|
{
|
|
|
path: '/tools-starkeysearch',
|
|
|
component: _import('modules/tools/tools-starkeysearch'),
|
|
|
name: 'toolsStarkeysearch',
|
|
|
meta: { title: '淘宝下拉框选词' }
|
|
|
},
|
|
|
- {
|
|
|
- path: '/tools-pricetrend',
|
|
|
- component: _import('modules/tools/tools-pricetrend'),
|
|
|
- name: 'toolsPricetrend',
|
|
|
- meta: { title: '价格走势' }
|
|
|
- },
|
|
|
{
|
|
|
path: '/tools-shopinfo',
|
|
|
component: _import('modules/tools/tools-shopinfo'),
|
|
|
name: 'toolsShopinfo',
|
|
|
meta: { title: '店铺信息查询' }
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/tools-promote',
|
|
|
+ component: _import('modules/tools/tools-promote'),
|
|
|
+ name: 'toolsPromote',
|
|
|
+ meta: { title: '淘宝卡首屏' }
|
|
|
+ }
|
|
|
+]
|
|
|
+export const toolsNav3 = [
|
|
|
+ {
|
|
|
+ path: '/tools-pricetrend',
|
|
|
+ component: _import('modules/tools/tools-pricetrend'),
|
|
|
+ name: 'toolsPricetrend',
|
|
|
+ meta: { title: '价格走势' }
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+export const toolsRoutes = [
|
|
|
{
|
|
|
path: '/tools-feedback',
|
|
|
component: _import('modules/tools/tools-feedback'),
|
|
@@ -79,12 +96,6 @@ export const toolsRoutes = [
|
|
|
component: _import('modules/tools/tools-productaskinfo'),
|
|
|
name: 'toolsProductaskinfo',
|
|
|
meta: { title: '商品问大家' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/tools-promote',
|
|
|
- component: _import('modules/tools/tools-promote'),
|
|
|
- name: 'toolsPromote',
|
|
|
- meta: { title: '淘宝卡首屏' }
|
|
|
}
|
|
|
]
|
|
|
|
|
@@ -199,6 +210,10 @@ const mainRoutes = {
|
|
|
{ path: '/login', component: _import('modules/account/login'), name: 'login', meta: { title: '登录' } },
|
|
|
{ path: '/register', component: _import('modules/account/register'), name: 'register', meta: { title: '注册' } },
|
|
|
{ path: '/home', component: _import('common/home'), name: 'home', meta: { title: '首页', isTab: true } },
|
|
|
+ ...toolsNav0,
|
|
|
+ ...toolsNav1,
|
|
|
+ ...toolsNav2,
|
|
|
+ ...toolsNav3,
|
|
|
...toolsRoutes,
|
|
|
...mineRoutes,
|
|
|
...mallRoutes
|