From 4d13ed6f9fdf9300e01cfaf3fe232befc124d4de Mon Sep 17 00:00:00 2001 From: liulujian Date: Fri, 3 Apr 2026 16:36:14 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E5=96=84=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E9=A1=B5=E9=9D=A2=E8=B7=AF=E7=94=B1=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- txw-mhzc-web/src/pages/index/router/routes.js | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/txw-mhzc-web/src/pages/index/router/routes.js b/txw-mhzc-web/src/pages/index/router/routes.js index 5843f1c..a750d6e 100644 --- a/txw-mhzc-web/src/pages/index/router/routes.js +++ b/txw-mhzc-web/src/pages/index/router/routes.js @@ -51,6 +51,21 @@ function jrsc() { function xqsc() { return import(/* webpackChunkName: "fwsc" */ '@/pages/index/views/fwsc/xqsc.vue'); } + +//碳数据市场 +function sjsc() { + return import(/* webpackChunkName: "fwsc" */ '@/pages/index/views/fwsc/sjsc.vue'); +} + +//数据列表 +function sjlbc() { + return import(/* webpackChunkName: "fwsc" */ '@/pages/index/views/fwsc/sjlbc.vue'); +} + +//服务中心引导页 +function fwscIndex() { + return import(/* webpackChunkName: "fwsc" */ '@/pages/index/views/fwsc/index.vue'); +} export default [ { name: 'login', @@ -187,4 +202,40 @@ export default [ disableBack: true, }, }, + { + name: 'fwsc-sjsc', + path: '/fwsc/sjsc', + component: sjsc, + meta: { + title: '碳数据市场', + isShowSideBar: false, + hasHome: true, + breadCrumbs: [{ title: '首页', to: '/home' }, { title: '服务中心', to: '' }, { title: '碳数据市场', to: '/fwsc/sjsc' }], + disableBack: true, + }, + }, + { + name: 'fwsc-sjlbc', + path: '/fwsc/sjlbc', + component: sjlbc, + meta: { + title: '数据列表', + isShowSideBar: false, + hasHome: true, + breadCrumbs: [{ title: '首页', to: '/home' }, { title: '服务中心', to: '' }, { title: '碳数据市场', to: '/fwsc/sjsc' }, { title: '数据列表', to: '/fwsc/sjlbc' }], + disableBack: true, + }, + }, + { + name: 'fwsc', + path: '/fwsc', + component: fwscIndex, + meta: { + title: '服务中心', + isShowSideBar: false, + hasHome: true, + breadCrumbs: [{ title: '首页', to: '/home' }, { title: '服务中心', to: '/fwsc' }], + disableBack: true, + }, + }, ];