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