Authored by wangtao

Merge branch 'master-500-dev' of http://113.200.75.45:82/monitor_v3/hg-monitor-w…

…eb into master-500-dev
Showing 76 changed files with 771 additions and 204 deletions
<title>拓扑列表</title>
<title>拓扑配置</title>
<article class="page-container">
<div class="page-panel">
<div class="main commonDiv">
... ...
... ... @@ -773,8 +773,11 @@ export default {
dataList.value.map(v => {
if (v.id == document.id) {
v.checked = true;
selectionData.value = [];
selectionData.value.push(v);
}
})
showUserDialog(true);
}
... ...
<el-tree-select
:filterable="filterable"
:size="$global.elementConfig.size.input"
node-key="nodeKey"
:placeholder="placeholderText"
:props="defaultProps"
v-model="value"
:data="data"
@change="change"
lazy
:load="load"
:check-strictly="checkStrictly"
:multiple="multiple"
:render-after-expand="false"
>
<template #default="{ node, data }">
<el-tag v-if="isTag" style="height: 18px;margin-right:6px;">
{{getTypeName(data.type)}}</el-tag>
<span>{{ node.label }}</span>
</template>
</el-tree-select>
... ...
/**
* 下拉树组件
*/
export default {
name: 'treeSelect',
template: '',
components: {},
props: {
// 选中的值
value: {
type: String,
default: ''
},
// 数据
data: {
type: Array,
default: []
},
//显示的提示语
placeholderText:{
type: String,
default: '请选择'
},
//指定标签,子树节点
defaultProps:{
type:Object,
default:{
children: 'children',
label: 'name',
value: 'value'
}
},
//唯一标识
nodeKey:{
type: String,
default: 'id'
},
//是否有标签
isTag:{
type:Boolean,
default:false
},
//是否可搜索
filterable:{
type:Boolean,
default:false
},
//是否任意级别被选择
checkStrictly:{
type:Boolean,
default:false
},
//是否多选
multiple:{
type:Boolean,
default:false
}
},
data() {
return {}
},
setup(props, {attrs, slots, emit}) {
const {proxy} = Vue.getCurrentInstance();
let data=Vue.ref([]);
let change=(val)=>{
//change事件传个父组件的值
emit("changeSelect",val)
}
//获取菜单类型
let getTypeName=(type)=>{
switch (type) {
case 'org':
return '部门';
case 'user':
return '用户';
default:
return '';
}
}
let init=()=>{
//lsq 部门数据 2022-09-05
proxy.$http.get(`/api-user/org/queryOrgs`, {}, function (res) {
if(res && res.data){
data.value = res.data;
data.value.map(item=>{
item.type='org'
})
}
})
}
const load = (node, resolve) => {
if (node.isLeaf) return resolve([])
if(node.data.type && node.data.type=='org'){
if(node.data.type && node.data.type=='org') {
let param = {
page: 1,
limit: 99999,
orgId: node.data.value
}
proxy.$http.get(`/api-user/users`, param, function (res) {
let arr = [];
if (res && res.data) {
arr = res.data;
}
if (arr.length > 0) {
arr.map(item => {
item.name = item.nickname;
item.type = 'user';
item.value=item.username;
})
}
resolve(arr)
})
}
}else{
resolve([])
}
}
// 监听编辑状态
Vue.watch(() => props.value, (newValue, oldVlaue) => {
// 编辑
});
// 挂载完
Vue.onMounted(() => {
init()
})
return {
data,
change,
getTypeName,
init,
load
}
}
}
... ...
... ... @@ -53,7 +53,9 @@ Promise.all([
//告警通知统计信息
.component('cm-user-type-tree-input', Vue.defineAsyncComponent(() => myImport('components/common/inputusertree/index')))
//菜单下拉树
.component('cm-tree-select-menu', Vue.defineAsyncComponent(() => myImport('components/common/treeSelectMenu/index')));
.component('cm-tree-select-menu', Vue.defineAsyncComponent(() => myImport('components/common/treeSelectMenu/index')))
//机构用户下拉树
.component('cm-tree-select-org-user', Vue.defineAsyncComponent(() => myImport('components/common/treeSelectOrgUser/index')));
// 自定义指令 授权按钮
app.directive('permissions', {
... ...
... ... @@ -23,7 +23,6 @@
</div>
<el-button :size="$global.elementConfig.size.button" @click="addAj()">新增</el-button>
</div>
<div class="btns">
<el-form-item>
... ...
... ... @@ -20,7 +20,7 @@
.main-header {
position: absolute;
left: 0px;
top: 35px;
top: 0px;
z-index: 999;
width: 100%;
}
... ...
... ... @@ -62,6 +62,12 @@
font-weight: normal;
src:url('../fonts/pingfang/PINGFANG REGULAR.TTF');
}
@font-face {
font-family: 'MI_LANTING_REGULAR';
font-style: normal;
font-weight: normal;
src:url('../fonts/MI_LANTING_REGULAR.TTF');
}
* {
margin: 0px;
padding: 0px;
... ... @@ -369,9 +375,9 @@ textarea:placeholder,
***/
.hero-section {
position: relative;
background: url('../img/hero/hero-bg.png');
background-position: center bottom;
background-size: cover;
/*background: url('../img/hero/hero-bg.png');*/
/*background-position: center bottom;*/
/*background-size: cover;*/
}
.concat-concat {
position: relative;
... ... @@ -1996,6 +2002,7 @@ blockquote:before {
font-size: 16px;
color:#666;
font-family: 'PingFang-SC-medium';
line-height: 32px;
}
.info-character{
padding:0 50px;
... ... @@ -2189,6 +2196,7 @@ blockquote:before {
}
.pro-info-title{
color:#fff;
padding:0 20px;
}
.pro-advantage-style{
border-right:1px solid #525a6a;
... ... @@ -2198,10 +2206,12 @@ blockquote:before {
border-right: none;
}
.pro-advantage-ul{
font-size: 14px;
font-size: 18px;
font-family: 'PingFang-SC-regular';
}
.pro-advantage-ul li{
padding:5px 0;
line-height: 36px;
}
.maintenance-advantage{
border-bottom:1px solid #525a6a;
... ... @@ -2209,6 +2219,8 @@ blockquote:before {
}
.maintenance-advantage.info-title{
color:#fff;
margin-top: 30px;
padding-bottom: 70px;
}
.maintenance-advantage-num{
font-size: 90px;
... ... @@ -3107,6 +3119,9 @@ blockquote:before {
}
.info-container-advantage .info-title{
color:#fff;
margin-top: 30px;
margin-bottom: 30px;
padding-bottom: 40px;
}
.info-container-advantage .pro-advantage-style{
padding: 50px 30px 0;
... ... @@ -3144,3 +3159,201 @@ blockquote:before {
.Aview-advantage-con:hover .maintenance-advantage-num{
color:#1665b1;
}
/*lsq 多运维平台样式 2022-10-12*/
.flex-warp-center{
display: flex;
justify-content: center;
}
.cloud-content{
background: #ffffff;
padding:10px;
border-radius: 5px;
box-shadow: 0 0 8px rgba(70,144,241,.3);
}
.cloud-title{
background: linear-gradient(to bottom, #9cc7fe 0%, #4690f1 100%);
padding:20px;
color:#ffffff;
font-size: 21px;
font-family: 'PingFang-SC-heavy';
border-radius: 6px;
}
.cloud-icon-item{
border-right:1px solid #eee;
margin:25px 0;
}
.cloud-icon-item-con{
align-items: center;
padding:10px;
}
.cloud-icon-title{
font-size: 18px;
color:#666;
}
.cloud-content-public .cloud-icon-item:nth-child(3n),
.cloud-content-private .cloud-icon-item:nth-child(2n){
border:none;
}
.cloud-c-title{
font-size: 24px;
color:#333;
font-family: 'PingFang-SC-medium';
text-align: center;
}
@media (min-width: 1400px) {
.container.cloud,.container.cmdb {
max-width: 1200px;
}
}
.banner-introduction .intro-intro{
padding-top:20px;
line-height: 24px;
}
/*lsq cmdb样式 2022-10-13*/
.func-top{
width: 100%;
}
.func-top-item{
font-size: 21px;
color:#333;
cursor: pointer;
}
.func-item-active{
color:#e4312a;
}
.func-bottom{
min-height: 425px;
}
.func-bottom-title{
font-size: 36px;
color:#ffffff;
display: flex;
align-items: center;
justify-content: space-around;
}
.func-bottom-title span,.funcIntro-span{
flex:1;
}
.funcIntro-span{
min-height: 82px;
}
.func-bottom-intro{
font-size: 16px;
color:#ffffff;
font-family: 'PingFang-SC-medium';
padding:40px;
display: flex;
align-items: center;
justify-content: center;
}
.func-bg{
position: absolute;
width: 100%;
left: 0;
top: 33%;
z-index: 0;
}
.container.cmdb{
z-index: 1;
position: relative;
}
@media (min-width: 992px){
.func-top .func-top-item{
max-width:20% ;
flex: 20%;
}
}
.cmdb .info-title{
padding-top:20px;
}
.func-symbol{
font-size: 80px;
height:45%;
display: flex;
align-items: flex-start;
font-family: 'MI_LANTING_REGULAR';
}
.func-l-p.func-bottom-intro{
padding-left:63px;
}
.lifeCycle-item{
background: #f3f5f8;
border-radius: 5px;
font-family: 'PingFang-SC-medium';
font-size: 18px;
color:#666;
padding: 20px 30px;
line-height: 32px;
}
.lifeCycle-item:nth-child(1){
margin-bottom: 20px;
color:#ffffff;
font-size: 16px;
background: url("../img/serviceSecond/cmdb/lifeCycle-1.png");
background-size: cover;
text-indent: 32px;
}
.lifeCycle-item-title{
color:#333;
}
.lifeCycle-intro{
display: flex;
align-items: center;
justify-content: space-between;
}
.lifeCycle-item:nth-child(2){
padding: 30px;
}
.lifeCycle-item:nth-child(2) .lifeCycle-intro{
padding-top:20px;
}
.app-title{
font-size: 24px;
color:#666;
}
.app-bg{
background: #f6f9fd;
border-radius: 5px;
padding: 20px;
}
.info-app-intro{
font-size: 16px;
color:#666;
font-family: 'PingFang-SC-regular';
min-height: 158px;
}
.app-advantage-style{
border-right:1px solid #525a6a;
padding:60px 20px 0;
height:100%;
}
.Aview-advantage-con:last-child .app-advantage-style{
border:none;
}
.Aview-advantage-con:last-child .pro-info-title{
padding-right:0;
}
.app-advantage-bg{
background: url("../img/serviceSecond/cmdb/advantage-bg.png");
background-size: cover;
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: -1;
}
.app-advantage-ul li{
line-height: 36px;
list-style: disc;
}
.cmdb-advantage-con .app-advantage-ul,.Aview-advantage-con:last-child .app-advantage-ul{
max-width: 100%;
}
.cmdb-advantage-con .app-advantage-style{
padding:60px 40px 0;
}
\ No newline at end of file
... ...
No preview for this file type

4.23 KB | W: | H:

4.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -2,19 +2,19 @@ export function culturalValuesDatas() {
let res = [
{
icon:'assets/img/about/culturalValues-1.png',
title:'"高"客户满意度'
title:'“高”客户满意度'
},
{
icon:'assets/img/about/culturalValues-2.png',
title:'"高"效率运转'
title:'“高”效率运转'
},
{
icon:'assets/img/about/culturalValues-3.png',
title:'"高"核心员工满意度'
title:'“高”核心员工满意度'
},
{
icon:'assets/img/about/culturalValues-4.png',
title:'"高"成本合理支出'
title:'“低”成本合理支出'
}
]
return res;
... ...
export function homeDatas() {
let res=[
{
title:'"魔镜智能"全面完成国产化兼容适配认证',
introduction:'鸿果科技旗下“魔镜智能”自研”A-View智能综合监控管理平台系统“完成对主流国产服务器、数据库、操作系统、中间件等兼容适配,并取得一系列兼容性认证',
title:'“魔镜智能”全面完成国产化兼容适配认证',
introduction:'鸿果科技旗下“魔镜智能”自研“A-View智能综合监控管理平台系统”完成对主流国产服务器、数据库、操作系统、中间件等兼容适配,并取得一系列兼容性认证',
isService:false,
isConcat:false,
},
... ...
... ... @@ -45,25 +45,25 @@ export function Information() {
icon:'assets/img/serviceSecond/information/advantage-1.png',
title:'“护网””等保”各规章变成“流程”强制性管控',
introduction:'特点:规章落地 提前约束 流程强制 全程留痕',
img:'assets/img/serviceSecond/information/advantageImg.png'
img:'assets/img/serviceSecond/information/advantageImg-1.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-2.png',
title:'通过”安全流程“提前管控日常操作、留痕',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
img:'assets/img/serviceSecond/information/advantageImg-2.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-3.png',
title:'税务局业务流程目录、展示、流程的分类管理',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
img:'assets/img/serviceSecond/information/advantageImg-3.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-4.png',
title:'工作组、用户权限的灵活配置',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
img:'assets/img/serviceSecond/information/advantageImg-4.png'
}
],
type:'advantage'
... ... @@ -117,25 +117,25 @@ export function securityLog() {
introduction:'',
dataFour:[
{
img:'assets/img/serviceSecond/securityLog/advantageImg.png',
img:'assets/img/serviceSecond/securityLog/advantageImg-1.png',
title:'高效数据处理能力',
introduction:'日志综合智能分析平台采用大数据架构进行数据的采集、存储、分析和检索。日志采集综合处理均值20000条/秒。数据采用高压缩存储算法,压缩比达到10:1。数据检索采用专业化日志查询引擎,百亿级日志量查询速率只需秒级。直观展示安全事件发生时间、访问源、危险等级及影响范围的分布情况。',
isDisplay:true
},
{
img:'assets/img/serviceSecond/securityLog/advantageImg.png',
img:'assets/img/serviceSecond/securityLog/advantageImg-2.png',
title:'基于策略分析的安全事件响应',
introduction:'日志综合智能分析平台基于状态分析的安全事件规则能够帮助用户对全网安全事件进行全方位定位,快速发现可疑行为、违规事件和攻击行为。基于时间线性的回溯分析能够帮助用户轻松了解到违规事件的时间、发生源、违规操作设备、操作行为,通过图形化还原违规行为现场,作为事后追溯的有力证据。',
isDisplay:true
},
{
img:'assets/img/serviceSecond/securityLog/advantageImg.png',
img:'assets/img/serviceSecond/securityLog/advantageImg-3.png',
title:'可视化日志展示',
introduction:'日志综合智能分析支持对日志查询结果进行在线快速自动分析,提供事件计数统计、时间分段环比统计、数值分段统计、字段值分类统计、字段数值统计、累计百分比统计、地理统计等统计功能,并以直观形象的统计图表(饼型图、直方图、堆积图、折线图等)来展现日志数据统计结果,并可将统计图表保存到自定义仪表盘上,方便用户随时查看。',
isDisplay:true
},
{
img:'assets/img/serviceSecond/securityLog/advantageImg.png',
img:'assets/img/serviceSecond/securityLog/advantageImg-4.png',
title:'日志存储和归档',
introduction:'日志存储按照《中华人民共和国网络安全法》规定留存相关的网络日志不少于六个月,超时的日志系统自动提醒相关负责人,对其做备份或销毁处理。系统将采集来的日志统一存储和归档,持海量数据存储,也支持磁盘柜、NAS和SAN等多种存储方式,便于扩充和统一查询检索。',
isDisplay:true
... ... @@ -457,7 +457,7 @@ export function alarm() {
return res
}
//综合监控管理A-view todo
//综合监控管理A-view
export function Aview() {
let res={
title:'综合监控管理A-view',
... ... @@ -623,195 +623,291 @@ export function Aview() {
return res
}
//CMDB资产管理 todo
//CMDB资产管理
export function cmdb() {
let res={
title:'CMDB资产管理',
introduction:'魔镜智能将为“智慧税务”提供一个可视化、全局化、智能化、标准化、自动化的“全流程击穿协同管理”平台。实时洞察数字化业务与用户体验、主动保障核心征管、电子税务局等核心业务系统稳定、持续高效运行,构建基于“人工智能+大数据”底座的异常检测、智能告警分析、高效信息协同的大运维工作体系。',
introduction:'CMDB(Configuration Management Database 配置管理数据库)存储与管理IT架构中设备的各种配置信息,它与所有服务支持和服务交付流程都紧密相联,支持这些流程的运转、发挥配置信息的价值,同时依赖于相关流程保证数据的准确性。面向应用的CMDB是构建其它ITIL流程的基础,是运维自动化的前提。',
data:[
{
title:'产品信息',
introduction:'魔镜智能将为“智慧税务”提供一个可视化、全局化、智能化、标准化、自动化的“全流程击穿协同管理”平台。实时洞察数字化业务与用户体验、主动保障核心征管、电子税务局等核心业务系统稳定、持续高效运行,构建基于“人工智能+大数据”底座的异常检测、智能告警分析、高效信息协同的大运维工作体系。',
introData:['CMDB(Configuration Management Database 配置管理数据库)存储与管理IT架构中设备的各种配置信息,它与所有服务支持和服务交付流程都紧密相联,支持这些流程的运转、发挥配置信息的价值,同时依赖于相关流程保证数据的准确性。面向应用的CMDB是构建其它ITIL流程的基础,是运维自动化的前提。',
'构建CMDB也是一个重新审视和剖析现有IT系统与数据的过程,通过CMDB的建设,将建立起集中、统一、标准、可控、服务化的平台型数据管理和消费模式,有利于数据的管理、利用,更有利于提升数据的质量和消费价值。'
],
type:'info'
},
{
title:'产品特点',
title:'产品价值',
introduction:'',
data:[
dataC:[
{
icon:'assets/img/serviceSecond/information/character-1.png',
title:'工单信息集中管理',
introduction:'实现工单信息自动化汇总,工单数据集中化管理,工单流程实时共享。'
img:'assets/img/serviceSecond/cmdb/value-1.png',
title:'提供统一的配置基础数据和IT架构全景图',
introData:['产品作为企业CMDB的技术载体,能够为系统监控、服务管理、自动化操作、安全管理、运维大数据、Devops等软件平台提供配置数据服务,帮助企业深入了解和掌控复杂的IT服务及资源组件。']
},
{
icon:'assets/img/serviceSecond/information/character-2.png',
title:'提高工作效率',
introduction:'运用智能化管理工具,降低人工沟通成本,缩短沟通时间。实时跟进工单问题的处理情况,提高工作效率。'
img:'assets/img/serviceSecond/cmdb/value-2.png',
title:'支持面向业务的CMDB动态建模',
introData:['系统支持面向业务视角的CMDB分层模型,可以根据实际环境进行配置项分类,配置项属性、配置项状态、CI与CI之间关系的定义和动态调整,提供面向业务的整体IT架构画像。']
},
{
icon:'assets/img/serviceSecond/information/character-3.png',
title:'实时处理单数据',
introduction:'全方位、多维度实时进行工单统计数据,及时掌握工单执行过程中的问题,帮助决策者获取数据支撑。'
img:'assets/img/serviceSecond/cmdb/value-3.png',
title:'支持自动化的CMDB数据维护',
introData:['系统内置业内领先的CMDB 自动发现组件,同时支持有代理和无代理两种工作模式,通过自动发现机制发现并收集从公有云/私有云到传统IT的各类 IT 资源配置信息、关联关系,为 CMDB 提供第一手的数据,避免手工方式带来的工作量大,数据更新不及时不准确等问题。']
},
{
img:'assets/img/serviceSecond/cmdb/value-4.png',
title:'多场景的消费API,基于IT架构驱动运维管理',
introData:['系统提供场景、配置项、关系等各个层面的数据消费Restful API,实现与监控、ITSM、云管、自动化运维、Devops工具等各种第三方系统对接,实现高性能的查询、更改、推送操作,完成组织内各种运维工具间的基础信息共享和任务协同,实现基于IT架构驱动的运维管理。']
},
{
img:'assets/img/serviceSecond/cmdb/value-5.png',
title:'面向运维的知识图谱',
introData:['提供面向运维的知识图谱,从物理连接、部署关系、调用关系、业务关联等多个维度清晰展现配置项关联关系,为故障分析、风险评估、架构管理等复杂运维工作提供支撑。']
},
{
img:'assets/img/serviceSecond/cmdb/value-6.png',
title:'关联关系可视化展现,提高工作效率',
introData:['提供从机房位置视角、网络环境视角、业务逻辑视角等可视化展现IT设备之间、IT设备和业务之间、业务和业务之间的关联关系,通过可视化展示方式,使IT管理人员对信息的理解和应用清晰和便捷,能够对这种关联一目了然,从而提高工作效率。']
}
],
type:'character'
type:'value'
},
{
title:'系统框架',
introduction:'安全运维服务流程的系统架构',
img:'assets/img/serviceSecond/information/system.png',
introduction:'',
img:'assets/img/serviceSecond/cmdb/system.png',
type:'system'
},
{
title:'产品优势',
title:'CMDB主要实现五个方面的功能',
introduction:'',
dataSecond:[
dataFunc:[
{
icon:'assets/img/serviceSecond/information/advantage-1.png',
title:'“护网””等保”各规章变成“流程”强制性管控',
introduction:'特点:规章落地 提前约束 流程强制 全程留痕',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'数据模型管理',
introduction:'提供配置类别、配置项模型和配置关系的自定义。提供图形化界面定义CMDB的数据结构,包括CI类型、每个CI类型包含的属性、对应的CI状态取值、允许的关系类型、CI实例唯一性判断规则,定义每个CI属性字段的数据类型、合法性校验规则、数据调和规则。',
img:'assets/img/serviceSecond/cmdb/func-1.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-2.png',
title:'通过”安全流程“提前管控日常操作、留痕',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'配置数据收集',
introduction:'提供企业级配置自动化发现模块,实现对IT环境中各类环境设施、IT基础架构、应用系统和业务服务信息的收集。 ',
img:'assets/img/serviceSecond/cmdb/func-2.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-3.png',
title:'税务局业务流程目录、展示、流程的分类管理',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'配置数据管理',
introduction:'采用非结构化数据库技术,完成对海量CMDB信息的管理,包括维护模型、配置项、关系映射的版本,对采集获取的管理对象数据进行模型化和实例化,并将配置项实例映射到应用服务和业务服务。',
img:'assets/img/serviceSecond/cmdb/func-3.png'
},
{
icon:'assets/img/serviceSecond/information/advantage-4.png',
title:'工作组、用户权限的灵活配置',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'数据消费服务',
introduction:'提供可视化拓扑展现、报表、访问权限控制等功能。同时为外部运维场景消费CMDB中存储的各类资源配置数据提供标准Restful API接口。',
img:'assets/img/serviceSecond/cmdb/func-4.png'
},
{
title:'关系可视化展现',
introduction:'提供从应用视角、网络环境视角、业务逻辑视角等可视化展现IT设备之间、IT设备和业务之间、业务和业务之间的关联关系,使IT管理人员对信息的理解和应用关联一目了然。',
img:'assets/img/serviceSecond/cmdb/func-5.png'
}
],
type:'advantage'
type:'func'
},
{
title:'平台价值',
introduction:'魔镜“智能流程协同管理平台”通过信息整合,全局掌控省税务局工单流程每个节点状态,协同流转,处理审批;清晰分类了解流程情况,实时统计工单数据。',
dataThird:[
{
title:'标准化',
introduction:'信息、流程、时间全面统一,高效协同',
img:'assets/img/serviceSecond/information/value-bg.png'
},
title: 'IT资产生命周期流程化管理',
introduction: '',
icon:'assets/img/serviceSecond/cmdb/lifeCycle.png',
dataLife:[
{
title:'规范化',
introduction:'理清流程、制度落地,业务按标准执行',
img:'assets/img/serviceSecond/information/value-bg.png'
title:'',
introData:['CMDB是数据管道、ITSM是流程管道”,CMDB支持ITSM流程的运转,并于流程所经之处在CMDB留痕,对IT资产的生命周期内业务相关流程进行管理,从而实现全生命周期的信息记录和审计']
},
{
title:'透明化',
introduction:'流程申请、流程进度、流程审批全程可观',
img:'assets/img/serviceSecond/information/value-bg.png'
title:'资产续保',
introData:['维保到期提醒','维保到期维护','维保信息稽核']
}
],
type:'value'
},
]
}
return res
}
//魔镜智能多云运维平台 todo
export function cloud() {
let res={
title:'魔镜智能多云运维平台',
introduction:'魔镜智能将为“智慧税务”提供一个可视化、全局化、智能化、标准化、自动化的“全流程击穿协同管理”平台。实时洞察数字化业务与用户体验、主动保障核心征管、电子税务局等核心业务系统稳定、持续高效运行,构建基于“人工智能+大数据”底座的异常检测、智能告警分析、高效信息协同的大运维工作体系。',
data:[
{
title:'产品信息',
introduction:'魔镜智能将为“智慧税务”提供一个可视化、全局化、智能化、标准化、自动化的“全流程击穿协同管理”平台。实时洞察数字化业务与用户体验、主动保障核心征管、电子税务局等核心业务系统稳定、持续高效运行,构建基于“人工智能+大数据”底座的异常检测、智能告警分析、高效信息协同的大运维工作体系。',
type:'info'
type:'lifeCycle'
},
{
title:'产品特点',
introduction:'',
title:'CMDB的高阶应用',
data:[
{
icon:'assets/img/serviceSecond/information/character-1.png',
title:'工单信息集中管理',
introduction:'实现工单信息自动化汇总,工单数据集中化管理,工单流程实时共享。'
icon:'assets/img/serviceSecond/cmdb/app-icon-1.png',
title:'故障处理',
introduction:'构建故障特征库,以监控故障发生特征,结合CMDB配置信息及关系数据,分析故障发生时的业务影响状态及范围,并实施故障自愈处理。'
},
{
icon:'assets/img/serviceSecond/information/character-2.png',
title:'提高工作效率',
introduction:'运用智能化管理工具,降低人工沟通成本,缩短沟通时间。实时跟进工单问题的处理情况,提高工作效率。'
icon:'assets/img/serviceSecond/cmdb/app-icon-2.png',
title:'能力分析',
introduction:'结合CMDB及关联数据,分析运维过程中涉及的业务资源、系统资源、运维能力的使用趋势,为系统容量调整提供数据支持。'
},
{
icon:'assets/img/serviceSecond/information/character-3.png',
title:'实时处理单数据',
introduction:'全方位、多维度实时进行工单统计数据,及时掌握工单执行过程中的问题,帮助决策者获取数据支撑。'
}
icon:'assets/img/serviceSecond/cmdb/app-icon-3.png',
title:'自动化运维',
introduction:'采用自动化运维工具来实施运维工作,管控因人工误操作带来的运维风险,减轻人工运维的工作量。'
},
{
icon:'assets/img/serviceSecond/cmdb/app-icon-4.png',
title:'系统配置管理',
introduction:'集中采集和管理各业务或应用系统的配置参数,为系统恢复或重建提供数据支持。实现配置数据的自动分发。'
},
],
type:'character'
},
{
title:'系统框架',
introduction:'安全运维服务流程的系统架构',
img:'assets/img/serviceSecond/information/system.png',
type:'system'
type:'app'
},
{
title:'产品优势',
introduction:'',
dataSecond:[
dataThird:[
{
icon:'assets/img/serviceSecond/information/advantage-1.png',
title:'“护网””等保”各规章变成“流程”强制性管控',
introduction:'特点:规章落地 提前约束 流程强制 全程留痕',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'随需而动的资源管理模型',
dataIntro:['灵活的配置管理数据模型,适应各种IT环境的管理需要','同时支持云环境以及传统IT环境的建模','资源分类、属性和关系可任意动态扩展']
},
{
icon:'assets/img/serviceSecond/information/advantage-2.png',
title:'通过”安全流程“提前管控日常操作、留痕',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'独有的双模自动发现能力',
dataIntro:['同时支持有代理和无代理模式的自动发现模式','适应不同安全管控模式下的客户IT环境','确保数据更新的准确性和及时性']
},
{
icon:'assets/img/serviceSecond/information/advantage-3.png',
title:'税务局业务流程目录、展示、流程的分类管理',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'面向业务的关联分析',
dataIntro:['面向业务应用的资源统一管理','兼容传统IT架构和云环境的基础设施和应用','内置启发式搜索和关联分析算法','可自动发现连接、部署、调用等关系']
}
],
dataThirdA:[
{
title:'丰富多样的服务化API',
dataIntro:['基于IT资源实现信息共享和运维协同','支持多种场景的CMDB消费调用服务','提供完整和开放的服务API,实现稳定、高效、敏捷运维']
},
{
icon:'assets/img/serviceSecond/information/advantage-4.png',
title:'工作组、用户权限的灵活配置',
introduction:'',
img:'assets/img/serviceSecond/information/advantageImg.png'
title:'简单易用,零开发导入',
dataIntro:['系统采用参数化设计、向导式配置','内置行业最佳实践的CMDB模型和消费场景','实施周期短,维护成本低']
}
],
type:'advantage'
}
]
}
return res
}
//魔镜智能多云运维平台
export function cloud() {
let res={
title:'魔镜智能多云运维平台',
introduction:'支持了国内外所有主流云厂商,包含混合云、多云环境下对计算资源的集中管理,自动化运维、监控、合规审计、多云纳管、云资源全生命周期等多个维度提供统一运维管控,提供系统映像、通过既定策略优化工作负载,系统运行状态,以及任务执行过程的可视化监控,并提供丰富的告警机制帮助客户进行快速处理,从而进行灵活的资源管理与运维。',
data:[
{
title:'产品信息',
introduction:'支持了国内外所有主流云厂商,包含混合云、多云环境下对计算资源的集中管理,自动化运维、监控、合规审计、多云纳管、云资源全生命周期等多个维度提供统一运维管控,提供系统映像、通过既定策略优化工作负载,系统运行状态,以及任务执行过程的可视化监控,并提供丰富的告警机制帮助客户进行快速处理,从而进行灵活的资源管理与运维。',
type:'info',
img:'assets/img/serviceSecond/cloud/info.png',
},
{
title:'平台价值',
introduction:'魔镜“智能流程协同管理平台”通过信息整合,全局掌控省税务局工单流程每个节点状态,协同流转,处理审批;清晰分类了解流程情况,实时统计工单数据。',
dataThird:[
title: '',
publicCloud: {
title: '公有云',
iconData: [
{
title: '阿里云',
icon: 'assets/img/serviceSecond/cloud/aliyun.png'
},
{
title: '腾讯云',
icon: 'assets/img/serviceSecond/cloud/tengxunyun.png'
},
{
title: 'HUAWEI',
icon: 'assets/img/serviceSecond/cloud/huawei.png'
},
{
title: 'Microsoft Azure',
icon: 'assets/img/serviceSecond/cloud/microsoftAzure.png'
},
{
title: 'UCLOUD',
icon: 'assets/img/serviceSecond/cloud/ucloud.png'
},
{
title: '京东云',
icon: 'assets/img/serviceSecond/cloud/jdyun.png'
},
{
title: '青云',
icon: 'assets/img/serviceSecond/cloud/qingyun.png'
},
{
title: 'AWS',
icon: 'assets/img/serviceSecond/cloud/aws.png'
},
{
title: '百度云',
icon: 'assets/img/serviceSecond/cloud/baiduyun.png'
},
]
},
privateCloud: {
title: '私有云',
iconData: [
{
title: 'openstack',
icon: 'assets/img/serviceSecond/cloud/openstack.png'
},
{
title: 'vmware',
icon: 'assets/img/serviceSecond/cloud/vmware.png'
},
{
title: '物理服务器',
icon: 'assets/img/serviceSecond/cloud/PCservice.png'
},
{
title: '虚拟机',
icon: 'assets/img/serviceSecond/cloud/vmware1.png'
},
{
title: '路由器/交换机',
icon: 'assets/img/serviceSecond/cloud/route.png'
},
{
title: '存储设备',
icon: 'assets/img/serviceSecond/cloud/storage.png'
}
]
},
type:'icon'
},
{
title:'产品特点',
introduction:'',
dataC:[
{
title:'标准化',
introduction:'信息、流程、时间全面统一,高效协同',
img:'assets/img/serviceSecond/information/value-bg.png'
img:'assets/img/serviceSecond/cloud/character-1.png',
title:'多云资源统一管理',
introData:[
'可纳管多家主流私有云、公有云的计算、存储、网络等资源,实现资源台账可视化、资源操作便捷化以及多租户多层级的资源配额管理和数据分权。'
]
},
{
title:'规范化',
introduction:'理清流程、制度落地,业务按标准执行',
img:'assets/img/serviceSecond/information/value-bg.png'
img:'assets/img/serviceSecond/cloud/character-2.png',
title:'多云环境自动化编排',
introData:[
'通过对云资源的蓝图设计、服务发布、服务申请、工单管理以及资源回收等,帮助客户实现资源的自动化运维和全生命周期管理。'
]
},
{
title:'透明化',
introduction:'流程申请、流程进度、流程审批全程可观',
img:'assets/img/serviceSecond/information/value-bg.png'
img:'assets/img/serviceSecond/cloud/character-3.png',
title:'多云资源统一运维和监控',
introData:[
'提供灵活可配的告警策略管理、微信邮件等多种方式的告警通知、资源性能指标和健康状态的统一分析等,帮助用户实时掌握全局资源的运行状态。'
]
},
{
img:'assets/img/serviceSecond/cloud/character-4.png',
title:'多维数据可视化',
introData:[
'通过自定义仪表盘实现资源用量的数据可视化分析;以资源池、集群、租户、主机等维度分析多云资源使用情况与变化趋势'
]
}
],
type:'value'
},
type:'character'
}
]
}
... ...
... ... @@ -99,9 +99,10 @@ router.beforeEach(async (to, from, next) => {
$('[top-nav]').removeClass('current');
$('[top-nav="'+toPath+'"]').addClass('current');
// 回到顶部
//lsq 跳转页面后页面滚动到顶部不增加滚动效果,延时减小 2022-10-14
$('html, body').animate({
scrollTop: 0
}, 500);
}, 100);
next();
})
... ...
... ... @@ -36,7 +36,7 @@
<section class="about-section rel text-center">
<div class="container">
<div class="row wow customFadeInRight delay-0-1s slow">
<div class="col-lg-12 col-md-12">
<div class="col-lg-12 col-md-12 pt-60">
<div class="title-style">鸿果文化价值观及企业目标</div>
</div>
</div>
... ...
... ... @@ -41,8 +41,9 @@ export default {
}
}
}
setNavStyle();
setTimeout(function (){
setNavStyle();
},700)
}
// 设置导航的样式
let setNavStyle=()=>{
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ... @@ -19,7 +19,7 @@
<section class="intro-tab">
<div class="container">
<ul class="intro-tab-container">
<li class="tab-item-li" v-for="(item,index) in cloudData.data" :key="item">
<li class="tab-item-li" v-for="(item,index) in cloudData.data" :key="item" v-show="item.title">
<span :class="['tab-item','scroll-to-target',{'tab-item-active':tabActive==index}]" :data-target="'[data-type='+item.type+']'">{{item.title}}</span>
</li>
</ul>
... ... @@ -27,9 +27,9 @@
</section>
<section :class="['info-container', 'rel', 'mb-70', 'pt-55',{'info-container-bg':item.type=='advantage'}]" v-for="(item,index) in cloudData.data" :key="item">
<section :class="['info-container', 'rel', 'pt-55',{'mb-70':item.type!='icon','pb-55':item.type=='icon','info-container-bg':item.type=='icon'}]" v-for="(item,index) in cloudData.data" :key="item">
<div class="div-type" :data-type="item.type"></div>
<div class="container">
<div class="container cloud">
<div class="info-title">{{item.title}}</div>
<div :class="['info-intro',{'text-align-center':item.type=='system' || item.type=='value'},{'max-width-600':item.type=='value'}]" v-if="item.introduction">{{item.introduction}}</div>
<div class="row" v-if="item.data && item.data.length>0">
... ... @@ -39,36 +39,53 @@
<div class="info-character-intro">{{itemC.introduction}}</div>
</div>
</div>
<div class="info-system pt-30" v-if="item.img">
<div class="info-system pt-50" v-if="item.img">
<img :src="item.img" alt="">
</div>
<div class="row pt-30" v-if="item.dataSecond && item.dataSecond.length>0">
<div class="col-lg-4">
<div :class="['info-advantage',{'advantage-active':advantageActive==indexA}]" @mouseover="showHover(indexA)" @mouseleave="hideHover" v-for="(itemA,indexA) in item.dataSecond">
<img class="" :src="itemA.icon" alt="">
<div :class="['info-advantage-title']">
<div>{{itemA.title}}</div>
<div class="advantage-title-intro" v-if="itemA.introduction && advantageActive==indexA && isMouseover">{{itemA.introduction}}</div>
<div class="row" v-if="item.publicCloud && item.privateCloud">
<div class="col-lg-8">
<div class="cloud-content cloud-content-public">
<div class="cloud-title">{{item.publicCloud.title}}</div>
<div class="row cloud-icon-container flex-warp-center">
<div class="cloud-icon-item col-md-4" v-for="itemI in item.publicCloud.iconData">
<div class="cloud-icon-item-con flex-column-center">
<div class="cloud-img">
<img :src="itemI.icon" alt="">
</div>
<div class="cloud-icon-title pt-30">{{itemI.title}}</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-8">
<img :src="advantageImg" alt="">
<div class="col-lg-4 ">
<div class="cloud-content cloud-content-private">
<div class="cloud-title">{{item.privateCloud.title}}</div>
<div class="row cloud-icon-container flex-warp-center">
<div class="cloud-icon-item col-md-6" v-for="itemI in item.privateCloud.iconData">
<div class="cloud-icon-item-con flex-column-center">
<div class="cloud-img">
<img :src="itemI.icon" alt="">
</div>
<div class="cloud-icon-title pt-30">{{itemI.title}}</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row pt-30" v-if="item.dataThird && item.dataThird.length>0">
<div class="col-lg-4" v-for="(itemV,indexV) in item.dataThird">
<div class="info-value" >
<img class="" :src="itemV.img" alt="">
<div :class="['info-value-title']">
<h3>{{itemV.title}}</h3>
<div>{{itemV.introduction}}</div>
</div>
<div class="row pt-30 pd-40" v-if="item.dataC && item.dataC.length>0">
<div class="col-lg-6 pd-40" v-for="(itemA,indexA) in item.dataC">
<div class="div-img text-center">
<img :src="itemA.img" alt="">
</div>
<div class="cloud-c-title pt-30">{{itemA.title}}</div>
<ul :class="[{'row':indexA>=2}, {'flex-column-center':indexA<2} ,'pt-30','pl-20','pr-20']" v-if="itemA.introData.length>0">
<li :class="['list-style-li']" v-for="(itemV,indexV) in itemA.introData"><i class="list-style"></i>{{itemV}}</li>
</ul>
</div>
</div>
</div>
</section>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ... @@ -27,42 +27,74 @@
</section>
<section :class="['info-container', 'rel', 'mb-70', 'pt-55',{'info-container-bg':item.type=='advantage'}]" v-for="(item,index) in cmdbData.data" :key="item">
<section :class="['info-container','info-container-'+item.type,'info-container-cmdb', 'rel', 'pt-55',{'mb-70':item.type=='system'||item.type=='app','info-container-bg':item.type=='func'}]" v-for="(item,index) in cmdbData.data" :key="item">
<div class="div-type" :data-type="item.type"></div>
<div class="container">
<div :class="'container cmdb '+item.type">
<div class="info-title">{{item.title}}</div>
<div :class="['info-intro',{'text-align-center':item.type=='system' || item.type=='value'},{'max-width-600':item.type=='value'}]" v-if="item.introduction">{{item.introduction}}</div>
<div class="row" v-if="item.data && item.data.length>0">
<div class="info-character col-md-4" v-for="(itemC,indexC) in item.data">
<img class="pt-50" :src="itemC.icon" alt="">
<h4 class="pt-30">{{itemC.title}}</h4>
<div class="info-character-intro">{{itemC.introduction}}</div>
<div :class="['info-intro']" v-if="item.introData && item.introData.length>0">
<div class="info-intro-item" v-for="itemI in item.introData">{{itemI}}</div>
</div>
<div class="row pt-30" v-if="item.data && item.data.length>0">
<div class="col-md-3 flex-start-column " v-for="(itemC,indexC) in item.data">
<div class="app-bg pd-25">
<img class="" :src="itemC.icon" alt="">
<div class="pt-30 app-title">{{itemC.title}}</div>
<div class="info-app-intro font-size-14 pt-20">{{itemC.introduction}}</div>
</div>
</div>
</div>
<div class="info-system pt-30" v-if="item.img">
<img :src="item.img" alt="">
</div>
<div class="row pt-30" v-if="item.dataSecond && item.dataSecond.length>0">
<div class="col-lg-4">
<div :class="['info-advantage',{'advantage-active':advantageActive==indexA}]" @mouseover="showHover(indexA)" @mouseleave="hideHover" v-for="(itemA,indexA) in item.dataSecond">
<img class="" :src="itemA.icon" alt="">
<div :class="['info-advantage-title']">
<div>{{itemA.title}}</div>
<div class="advantage-title-intro" v-if="itemA.introduction && advantageActive==indexA && isMouseover">{{itemA.introduction}}</div>
</div>
<div class="row pt-30 pd-40" v-if="item.dataC && item.dataC.length>0">
<div class="col-lg-6 pd-40" v-for="(itemA,indexA) in item.dataC">
<div class="div-img text-center">
<img :src="itemA.img" alt="">
</div>
<div class="cloud-c-title pt-30">{{itemA.title}}</div>
<ul :class="[{'row':indexA>=2}, {'flex-column-center':indexA<2} ,'pt-30','pl-20','pr-20']" v-if="itemA.introData.length>0">
<li :class="['list-style-li']" v-for="(itemV,indexV) in itemA.introData">{{itemV}}</li>
</ul>
</div>
</div>
<div class="row mt-40 pb-30" v-if="item.dataFunc && item.dataFunc.length>0">
<div class="func-top row">
<div @click="changeFunc(indexF)" :class="['col-lg-2', 'func-top-item',{'func-item-active':funcActive==indexF}]" v-for="(itemF,indexF) in item.dataFunc">
{{itemF.title}}
</div>
</div>
<div class="col-lg-8">
<img :src="advantageImg" alt="">
<div class="func-bottom row pt-30">
<div class="col-lg-6 func-bottom-title"><span></span><span>{{funcTitle}}</span></div>
<div :class="['col-lg-6', 'func-bottom-intro',{'func-l-p':funcActive==1}]"><span class="func-symbol"></span><span class="funcIntro-span">{{funcIntro}}</span></div>
</div>
</div>
<div class="row pt-50" v-if="item.dataLife && item.dataLife.length>0">
<div class="col-lg-7">
<img :src="item.icon" alt="">
</div>
<div class="col-lg-5 lifeCycle-con flex-column-center">
<div class="lifeCycle-item" v-for="itemL in item.dataLife">
<div class="lifeCycle-item-title" v-if="itemL.title">{{itemL.title}}</div>
<div class="lifeCycle-intro">
<div class="lifeCycle-intro-item" v-for="itemI in itemL.introData">{{itemI}}</div>
</div>
</div>
</div>
</div>
<div class="row pt-30" v-if="item.dataThird && item.dataThird.length>0">
<div class="col-lg-4" v-for="(itemV,indexV) in item.dataThird">
<div class="info-value" >
<img class="" :src="itemV.img" alt="">
<div :class="['info-value-title']">
<h3>{{itemV.title}}</h3>
<div>{{itemV.introduction}}</div>
</div>
<div class="func-bg" v-if="item.type=='func'">
<img :src="funcImg" alt="">
</div>
<div class="Aview-con" v-if="item.dataThird && item.dataThird.length>0">
<div class="row Aview-container">
<div class="col-lg-4 Aview-advantage-con" v-for="(itemV,indexV) in item.dataThird">
<div class="info-value app-advantage-style pb-50" >
<div :class="['pro-info-title']">
<div class=" advantage-title-Aview">{{itemV.title}}</div>
<ul class="app-advantage-ul pt-30 advantage-intro-Aview"><li v-for="(itemP,indexP) in itemV.dataIntro">{{itemP}}</li></ul>
<div class="maintenance-advantage-num pt-50 pb-60">0{{indexV+1}}</div>
</div>
</div>
... ... @@ -70,6 +102,20 @@
</div>
</div>
<div class=" Aview-con cmdb-advantage-con" v-if="item.dataThirdA && item.dataThirdA.length>0">
<div class="row Aview-container">
<div class="col-lg-6 Aview-advantage-con" v-for="(itemV,indexV) in item.dataThirdA">
<div class="info-value pb-50 app-advantage-style" >
<div :class="['pro-info-title']">
<div class=" advantage-title-Aview">{{itemV.title}}</div>
<ul class="app-advantage-ul pt-30 advantage-intro-Aview"><li v-for="(itemP,indexP) in itemV.dataIntro">{{itemP}}</li></ul>
<div class="maintenance-advantage-num pt-50 pb-60">0{{indexV+3}}</div>
</div>
</div>
</div>
</div>
</div>
<div class="app-advantage-bg" v-if="item.type=='advantage'"></div>
</section>
... ...
... ... @@ -10,14 +10,44 @@ export default {
let cmdbData=cmdb();
//页签高亮显示
let tabActive=Vue.ref(0);
//cmdb实现五大功能的高亮显示
let funcActive=Vue.ref(0);
let funcTitle=Vue.ref();
let funcIntro=Vue.ref();
let funcImg=Vue.ref();
const funcData=()=>{
cmdbData.data.map(item=>{
if(item.type=='func'){
funcTitle.value=item.dataFunc[0].title;
funcIntro.value=item.dataFunc[0].introduction;
funcImg.value=item.dataFunc[0].img;
}
})
}
//五个功能change事件
let changeFunc=(index)=>{
funcActive.value=index;
cmdbData.data.map(item=>{
if(item.type=='func'){
funcTitle.value=item.dataFunc[index].title;
funcIntro.value=item.dataFunc[index].introduction;
funcImg.value=item.dataFunc[index].img;
}
})
}
// 挂载完
Vue.onMounted(() => {
funcData();
})
return {
cmdbData,
tabActive
tabActive,
funcActive,
funcTitle,
funcIntro,
funcImg,
changeFunc
}
}
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ... @@ -77,7 +77,7 @@
<div class="col-lg-4 maintenance-advantage-item" v-for="(itemV,indexV) in item.dataThird">
<div class="info-value pro-advantage-style pb-50" >
<div :class="['pro-info-title']">
<h4 class="color-white">{{itemV.title}}</h4>
<div class="advantage-title-Aview">{{itemV.title}}</div>
<ul class="pro-advantage-ul pt-30"><li v-for="(itemP,indexP) in itemV.dataIntro">{{itemP}}</li></ul>
<div class="maintenance-advantage-num pt-100 pb-80">0{{indexV+1}}</div>
</div>
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ... @@ -50,7 +50,7 @@
</li>
</ul>
</div>
<span class="btn btn-danger mt-25 mb-25 ml-15 d-inline-block min-width-100">现在申请</span>
<!-- <span class="btn btn-danger mt-25 mb-25 ml-15 d-inline-block min-width-100">现在申请</span>-->
</div>
</div>
<div class="bg-white border float-left p-10 w-30">
... ...
<section class="hero-section rel rpt-150 pb-130 rpb-0">
<section class="hero-section rel rpt-150 pb-90 rpb-0">
<div class="shape shapeAnimationOne l-10 t-60">
<img src="assets/img/shapes/shape1.png" alt="Shape">
</div>
... ...