CIM专区 初始化
This commit is contained in:
parent
7014db07b3
commit
88e063fa04
|
@ -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: {
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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>
|
|
@ -256,6 +256,11 @@
|
|||
},
|
||||
})
|
||||
break
|
||||
case 'CIM专区':
|
||||
router.push({
|
||||
path: '/cimSpecialArea',
|
||||
})
|
||||
break
|
||||
default:
|
||||
router.push('/home')
|
||||
break
|
||||
|
|
Loading…
Reference in New Issue