You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<TitleGroup>
|
|
|
|
|
<template slot="title">{{ data.productInfoEtitle }}</template>
|
|
|
|
|
<template slot="subTitle">{{ data.productInfoCtitle }}</template>
|
|
|
|
|
</TitleGroup>
|
|
|
|
|
<div class="pageInfo">针对变配电场景下高压场/GIS组合电器、变压器、电容电抗蛋、避雷器、高压开关柜、隔离开关等电气设备采用不同的手段进行监测。</div>
|
|
|
|
|
<div class="image">
|
|
|
|
|
<el-image
|
|
|
|
|
style="width: 100%;height: 100%"
|
|
|
|
|
:src="banner"
|
|
|
|
|
></el-image>
|
|
|
|
|
<!-- fit="contain"></el-image>-->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import TitleGroup from "@/components/TitleGroup";
|
|
|
|
|
import banner from '@/assets/image/banner.png'
|
|
|
|
|
|
|
|
|
|
let map = null
|
|
|
|
|
export default {
|
|
|
|
|
name: 'PlatformArchitecture',
|
|
|
|
|
components: {
|
|
|
|
|
TitleGroup
|
|
|
|
|
},
|
|
|
|
|
props:['data'],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
banner,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
},
|
|
|
|
|
methods: {}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
@import "~@/style.less";
|
|
|
|
|
.image{
|
|
|
|
|
width: 65vw;
|
|
|
|
|
height: 33.3vw;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 4vw 0 6vw 0;
|
|
|
|
|
}
|
|
|
|
|
.pageInfo{
|
|
|
|
|
width: 63vw;
|
|
|
|
|
margin-top: 0.9vw;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: #6666;
|
|
|
|
|
font-size: 1.2vw;
|
|
|
|
|
line-height: 2.2vw;
|
|
|
|
|
letter-spacing: 2.8px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|