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.

58 lines
1.1 KiB
Vue

<template>
<div>
<TitleGroup>
<template slot="title">{{ data.productInfoEtitle }}</template>
<template slot="subTitle">{{ data.productInfoCtitle }}</template>
</TitleGroup>
<div class="pageInfo">{{ data.hwProductInfoDetailList[0].productInfoDetailDesc}}</div>
<div class="image">
<el-image
style="width: 100%;height: 100%"
:src="data.hwProductInfoDetailList[0].productInfoDetailPic"
></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>