CIM专区 初始化

This commit is contained in:
a0049873 2022-08-19 10:03:43 +08:00
parent 7014db07b3
commit 88e063fa04
8 changed files with 46 additions and 2 deletions

View File

@ -1,8 +1,8 @@
/* /*
* @Author: hisense.wuhongjian * @Author: hisense.wuhongjian
* @Date: 2020-07-07 16:03:23 * @Date: 2020-07-07 16:03:23
* @LastEditors: hisense.wuhongjian * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-08-15 16:35:10 * @LastEditTime: 2022-08-19 09:56:27
* @Description: 数据资源参数配置 * @Description: 数据资源参数配置
*/ */
//const newLocation = 'qingdao' //const newLocation = 'qingdao'
@ -40,6 +40,7 @@ if (newLocation === 'qingdao') {
// { name: '', key: 'houtaiguanli' }, // { name: '', key: 'houtaiguanli' },
{ name: '赋能案例', key: 'assignCase' }, { name: '赋能案例', key: 'assignCase' },
{ name: '融合服务', key: 'integrationServices' }, { name: '融合服务', key: 'integrationServices' },
{ name: 'CIM专区', key: 'cimSpecialArea' },
] ]
footerDataList.footerList = { footerDataList.footerList = {
company: { company: {

View File

@ -405,6 +405,16 @@ export const constantRoutes = [
icon: 'error-warning-line', icon: 'error-warning-line',
}, },
}, },
// CIM
{
path: '/cimSpecialArea',
name: 'cimSpecialArea',
component: () => import('@/views/cimSpecialArea/index'),
meta: {
title: 'CIM专区',
icon: 'error-warning-line',
},
},
// //
{ {
path: '/capabilityCloud', path: '/capabilityCloud',

View File

@ -0,0 +1,28 @@
<!--
* @Author: hisense.liangjunhua
* @Date: 2022-08-09 11:32:47
* @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-08-19 10:02:30
* @Description: 告诉大家这是什么
-->
<template>
<div class="cimSpecialArea">
<home-header></home-header>
<cimHead></cimHead>
<platform></platform>
<layer></layer>
<algorithm></algorithm>
</div>
</template>
<script setup>
import HomeHeader from '@/views/home/components/header'
import cimHead from './components/cimHead'
import platform from './components/platform'
import layer from './components/layer'
import algorithm from './components/algorithm'
</script>
<style lang="less" scoped>
.cimSpecialArea {
padding-top: 0.64rem;
}
</style>

View File

@ -256,6 +256,11 @@
}, },
}) })
break break
case 'CIM专区':
router.push({
path: '/cimSpecialArea',
})
break
default: default:
router.push('/home') router.push('/home')
break break