From 695a70711525395b86d442699dab136bffa00ac2 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 24 Sep 2024 17:07:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yxt-as-ui/src/router/index.js | 72 +++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/yxt-as-ui/src/router/index.js b/yxt-as-ui/src/router/index.js index c77477246a..b9f5d58741 100644 --- a/yxt-as-ui/src/router/index.js +++ b/yxt-as-ui/src/router/index.js @@ -800,6 +800,78 @@ export const constantRoutes = [{ title: '采购汇总报表', noCache: true } + }, + { + path: '/business/serviceSummary', + component: () => import('@/views/statement/business/serviceSummary.vue'), + name: 'ServiceSummary', + meta: { + title: '业务汇总', + noCache: true + } + }, + { + path: '/business/businessDetail', + component: () => import('@/views/statement/business/businessDetail.vue'), + name: 'BusinessDetail', + meta: { + title: '业务明细', + noCache: true + } + }, + { + path: '/deadStock/deadStock', + component: () => import('@/views/statement/deadStock/deadStock'), + name: 'DeadStock', + meta: { + title: '滞销品查询', + noCache: true + } + }, + { + path: '/doBusiness/businessSummary', + component: () => import('@/views/statement/doBusiness/businessSummary'), + name: 'BusinessSummary', + meta: { + title: '营业汇总', + noCache: true + } + }, + { + path: '/doBusiness/businessSummary', + component: () => import('@/views/statement/doBusiness/businessAnalysisByFirst'), + name: 'BusinessAnalysisByFirst', + meta: { + title: '营业保外分析', + noCache: true + } + }, + { + path: '/doBusiness/businessAnalysisBySecond', + component: () => import('@/views/statement/doBusiness/businessAnalysisBySecond'), + name: 'BusinessAnalysisBySecond', + meta: { + title: '营业欠款分析', + noCache: true + } + }, + { + path: '/doBusiness/operatingDetail', + component: () => import('@/views/statement/doBusiness/operatingDetail'), + name: 'OperatingDetail', + meta: { + title: '营业明细', + noCache: true + } + }, + { + path: '/inventory/inventory', + component: () => import('@/views/statement/inventory/inventory'), + name: 'Inventory', + meta: { + title: '库存查询', + noCache: true + } } ] },