From dec9a08d77b7b66d5c315c581f23c7ab53997325 Mon Sep 17 00:00:00 2001 From: woody Date: Wed, 24 Sep 2025 10:58:51 +0800 Subject: [PATCH] =?UTF-8?q?feat(router):=20=E8=8F=9C=E5=8D=95=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 111 ++++++++++++++++++++++---------------------- 1 file changed, 56 insertions(+), 55 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 2d2d984..21f3a0c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1928,6 +1928,7 @@ export const constantRoutes = [ } ] }, + { path: 'lotteryDetails', name: 'LotteryDetails', @@ -1941,33 +1942,6 @@ export const constantRoutes = [ } ] }, - { - path: 'rechargeCard', - name: 'RechargeCard', - component: ParentView, - children: [ - { - path: 'rechargeCardList', - name: 'RechargeCardList', - component: () => import('@/views/marketing/rechargeCard/index'), - meta: { title: '充值提货卡' } - }, - { - path: 'addRechargeCard', - name: 'addRechargeCard', - component: () => import('@/views/marketing/rechargeCard/addRechargeCard'), - meta: { title: '充值提货卡-添加' }, - hidden: true - }, - { - path: 'rechargeQc', - name: 'rechargeQc', - component: () => import('@/views/marketing/rechargeCard/rechargeQc'), - meta: { title: '充值提货卡-添加' }, - hidden: true - } - ] - }, { path: 'lottery', name: 'Lottery', @@ -2002,6 +1976,33 @@ export const constantRoutes = [ } ] }, + { + path: 'rechargeCard', + name: 'RechargeCard', + component: ParentView, + children: [ + { + path: 'rechargeCardList', + name: 'RechargeCardList', + component: () => import('@/views/marketing/rechargeCard/index'), + meta: { title: '充值提货卡' } + }, + { + path: 'addRechargeCard', + name: 'addRechargeCard', + component: () => import('@/views/marketing/rechargeCard/addRechargeCard'), + meta: { title: '充值提货卡-添加' }, + hidden: true + }, + { + path: 'rechargeQc', + name: 'rechargeQc', + component: () => import('@/views/marketing/rechargeCard/rechargeQc'), + meta: { title: '充值提货卡-添加' }, + hidden: true + } + ] + }, { path: 'directUpgrade', @@ -2023,6 +2024,34 @@ export const constantRoutes = [ } ] }, + { + path: 'directRanking', + name: 'DirectRanking', + component: ParentView, + meta: { title: '直推排行数据' }, + children: [ + { + path: 'directRankingList', + name: 'DirectRankingList', + component: () => import('@/views/marketing/directRanking/index'), + meta: { title: '直推人数排行数据' } + }, + { + path: 'directAmountRankingList', + name: 'DirectAmountRankingList', + component: () => import('@/views/marketing/directRanking/amount'), + meta: { title: '直推金额排行数据' }, + hidden: true + }, + { + path: 'directConfig', + name: 'DirectConfig', + component: () => import('@/views/marketing/directRanking/config'), + meta: { title: '直推配置' }, + hidden: true + } + ] + }, // { // path: 'benefitsGift', // name: 'BenefitsGift', @@ -2122,34 +2151,6 @@ export const constantRoutes = [ meta: { title: '旅游活动数据' } } ] - }, - { - path: 'directRanking', - name: 'DirectRanking', - component: ParentView, - meta: { title: '直推排行数据' }, - children: [ - { - path: 'directRankingList', - name: 'DirectRankingList', - component: () => import('@/views/marketing/directRanking/index'), - meta: { title: '直推人数排行数据' } - }, - { - path: 'directAmountRankingList', - name: 'DirectAmountRankingList', - component: () => import('@/views/marketing/directRanking/amount'), - meta: { title: '直推金额排行数据' }, - hidden: true - }, - { - path: 'directConfig', - name: 'DirectConfig', - component: () => import('@/views/marketing/directRanking/config'), - meta: { title: '直推配置' }, - hidden: true - } - ] } ]