From 88e063fa049e74309232669395c432b6d562d226 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Fri, 19 Aug 2022 10:03:43 +0800 Subject: [PATCH] =?UTF-8?q?CIM=E4=B8=93=E5=8C=BA=20=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/public/static/config/location.js | 5 ++-- front/src/router/index.js | 10 +++++++ .../cimSpecialArea/components/algorithm.vue | 0 .../cimSpecialArea/components/cimHead.vue | 0 .../views/cimSpecialArea/components/layer.vue | 0 .../cimSpecialArea/components/platform.vue | 0 front/src/views/cimSpecialArea/index.vue | 28 +++++++++++++++++++ front/src/views/home/components/header.vue | 5 ++++ 8 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 front/src/views/cimSpecialArea/components/algorithm.vue create mode 100644 front/src/views/cimSpecialArea/components/cimHead.vue create mode 100644 front/src/views/cimSpecialArea/components/layer.vue create mode 100644 front/src/views/cimSpecialArea/components/platform.vue create mode 100644 front/src/views/cimSpecialArea/index.vue diff --git a/front/public/static/config/location.js b/front/public/static/config/location.js index db0bafee..e38d0183 100644 --- a/front/public/static/config/location.js +++ b/front/public/static/config/location.js @@ -1,8 +1,8 @@ /* * @Author: hisense.wuhongjian * @Date: 2020-07-07 16:03:23 - * @LastEditors: hisense.wuhongjian - * @LastEditTime: 2022-08-15 16:35:10 + * @LastEditors: hisense.liangjunhua + * @LastEditTime: 2022-08-19 09:56:27 * @Description: 数据资源参数配置 */ //const newLocation = 'qingdao' @@ -40,6 +40,7 @@ if (newLocation === 'qingdao') { // { name: '后台管理', key: 'houtaiguanli' }, { name: '赋能案例', key: 'assignCase' }, { name: '融合服务', key: 'integrationServices' }, + { name: 'CIM专区', key: 'cimSpecialArea' }, ] footerDataList.footerList = { company: { diff --git a/front/src/router/index.js b/front/src/router/index.js index 64493985..060971e7 100644 --- a/front/src/router/index.js +++ b/front/src/router/index.js @@ -405,6 +405,16 @@ export const constantRoutes = [ icon: 'error-warning-line', }, }, + // CIM专区 + { + path: '/cimSpecialArea', + name: 'cimSpecialArea', + component: () => import('@/views/cimSpecialArea/index'), + meta: { + title: 'CIM专区', + icon: 'error-warning-line', + }, + }, // 能力云图 { path: '/capabilityCloud', diff --git a/front/src/views/cimSpecialArea/components/algorithm.vue b/front/src/views/cimSpecialArea/components/algorithm.vue new file mode 100644 index 00000000..e69de29b diff --git a/front/src/views/cimSpecialArea/components/cimHead.vue b/front/src/views/cimSpecialArea/components/cimHead.vue new file mode 100644 index 00000000..e69de29b diff --git a/front/src/views/cimSpecialArea/components/layer.vue b/front/src/views/cimSpecialArea/components/layer.vue new file mode 100644 index 00000000..e69de29b diff --git a/front/src/views/cimSpecialArea/components/platform.vue b/front/src/views/cimSpecialArea/components/platform.vue new file mode 100644 index 00000000..e69de29b diff --git a/front/src/views/cimSpecialArea/index.vue b/front/src/views/cimSpecialArea/index.vue new file mode 100644 index 00000000..ebc63aea --- /dev/null +++ b/front/src/views/cimSpecialArea/index.vue @@ -0,0 +1,28 @@ + + + + diff --git a/front/src/views/home/components/header.vue b/front/src/views/home/components/header.vue index c057db47..16b78543 100644 --- a/front/src/views/home/components/header.vue +++ b/front/src/views/home/components/header.vue @@ -256,6 +256,11 @@ }, }) break + case 'CIM专区': + router.push({ + path: '/cimSpecialArea', + }) + break default: router.push('/home') break