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.
47 lines
884 B
Vue
47 lines
884 B
Vue
<template>
|
|
<div>
|
|
<TitleGroup>
|
|
<template slot="title">{{ data.productInfoEtitle }}</template>
|
|
<template slot="subTitle">{{ data.productInfoCtitle }}</template>
|
|
</TitleGroup>
|
|
<div class="image">
|
|
<el-image
|
|
style="width: 100%;height: 100%"
|
|
:src="data.hwProductInfoDetailList[0].productInfoDetailPic"
|
|
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',
|
|
props: ['data'],
|
|
components: {
|
|
TitleGroup
|
|
},
|
|
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;
|
|
}
|
|
</style>
|