123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <div class="imageText warp" :class="['terminal'+terminal,'pos-' + componentContent.positionValue]">
- <div class="img img-left">
- <a class="a-link" @click="jumpLink(componentContent.linkObj)"><img :src="componentContent.imageUrl" alt=""></a>
- </div>
- <div class="text">
- <h3 class="h3">{{componentContent.title}}</h3>
- <div v-html="componentContent.content"></div>
- </div>
- <div class="img img-right">
- <a class="item a-link" @click="jumpLink(componentContent.linkObj)"><img :src="componentContent.imageUrl" alt=""></a>
- </div>
- </div>
- </template>
- <script>
- import {funMixin} from '../config/mixin'
- export default {
- name: 'imageTextComponent',
- mixins: [funMixin],
- data () {
- return {
- }
- },
- props: {
- terminal: {
- type: Number,
- default: 4
- },
- componentContent: {
- type: Object
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .imageText{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20px 0;
- .img{
- width: 50%;
- padding-bottom: 30%;
- background-color: #cacaca;
- position: relative;
- img{
- max-width: 100%;
- height: 100%;
- max-height: 100%;
- position: absolute;
- margin: auto;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- }
- .text{
- width: 40%;
- .h3{
- font-size: 30px;
- margin-bottom: 24px;
- }
- .p{
- font-size: 16px;
- }
- }
- &.pos-top{
- display: block;
- text-align: center;
- .img{
- width: 100%;
- }
- .text{
- width: 100%;
- margin-top: 30px;
- }
- .img-right{
- display: none;
- }
- }
- &.pos-bottom{
- display: block;
- text-align: center;
- .img{
- width: 100%;
- }
- .text{
- width: 100%;
- margin-bottom: 30px;
- }
- .img-left{
- display: none;
- }
- }
- &.pos-left{
- .img-right{
- display: none;
- }
- }
- &.pos-right{
- .text{
- padding-left: 20px;
- }
- .img-left{
- display: none;
- }
- }
- }
- </style>
|