123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <template>
- <div class="mta-card-lv1">
- <div class="mta-card-content-pc mta-hidden-xs" :class="[img.order>contentOrder ? 'img-left': 'img-right']">
- <img :style="`order:${img.order}`" :src="img.url">
- <div class="card-info" :style="`order: ${contentOrder}`">
- <h5>{{title}}</h5>
- <p class="card-des">{{description}}</p>
- <div class="mta-card-row" v-for="(rowList,index) in tagesPc" :key="`pc-${index}`">
- <template v-for="(des,ind) in rowList">
- <!-- 站位div -->
- <span class="mta-card-row-item" v-if="des.type == 'empty'" :key="ind"></span>
- <span v-else class="mta-card-row-item" :key="ind"><i></i><span>{{des.value}}</span></span>
- </template>
- </div>
- <slot></slot>
- </div>
- </div>
- <div class="mta-card-content-h5 mta-hidden-sm">
- <img :src="img.url">
- <div class="card-info">
- <h5>{{title}}</h5>
- <em></em>
- <p class="card-des" v-if="description">{{description}}</p>
- <div class="mta-card-row" v-for="(rowList,index) in tagesH5" :key="`h5-${index}`">
- <template v-for="(des,ind) in rowList">
- <!-- 站位div -->
- <span v-if="des.empty" :key="ind"></span>
- <span :key="ind" class="mta-card-row-item"><i></i><span>{{des.value}}</span></span>
- </template>
- </div>
- <slot></slot>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "imgCardLv1",
- props: {
- option: {
- type: Object,
- required: true,
- },
- colPc: {
- type: Number,
- default: 3
- },
- colH5: {
- type: Number,
- default: 3
- }
- },
- computed: {
- img() {
- return {url: this.option.img.url, order: this.option.img.order}
- },
- title() {
- return this.option.content.title;
- },
- description() {
- return this.option.content.des;
- },
- contentOrder() {
- return this.option.content.order;
- },
- tagesPc() {
- const count = this.colPc;
- const list = this.option.content.list;
- const row = Math.ceil(list.length / count);
- const result = [];
- for (let i = 1; i <= row; i++) {
- const start = (i - 1) * count;
- const end = (i * count)
- const curList = list.slice(start, end);
- if (curList.length < count) {
- curList.push({type: 'empty'});
- }
- result.push(curList)
- }
- return result;
- },
- tagesH5() {
- const count = this.colH5;
- const list = this.option.content.list;
- const row = Math.ceil(list.length / count);
- const result = [];
- for (let i = 1; i <= row; i++) {
- const start = (i - 1) * count;
- const end = (i * count)
- const curList = list.slice(start, end);
- if (curList.length < count) {
- curList.push({type: 'empty'});
- }
- result.push(curList)
- }
- return result;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mta-card-lv1 {
- margin: 0 auto 120px;
- .mta-card-content-pc {
- display: flex;
- img {
- width: 480px;
- height: 370px;
- }
- }
- .img-left {
- img {
- margin-left: 100px;
- }
- }
- .img-right {
- img {
- margin-right: 100px;
- }
- }
- .card-info {
- h5 {
- font-size: 24px;
- font-weight: 800;
- text-align: left;
- color: #333;
- margin-top: 40px;
- margin-bottom: 30px;
- }
- .card-des {
- font-size: 14px;
- line-height: 24px;
- color: #333;
- font-weight: 500;
- text-align: left;
- margin-bottom: 30px;
- }
- }
- .mta-card-row-item {
- font-size: 14px;
- font-weight: 500;
- color: #333;
- width: 160px;
- margin-bottom: 24px;
- i {
- display: inline-block;
- width:8px;
- height: 8px;
- background: #00b96b;
- margin-right: 13px;
- border-radius: 50%;
- }
- span {
- line-height: 24px;
- }
- }
- .mta-card-row {
- display: flex;
- }
- @media (max-width: 768px) {
- // card--info
- .card-info {
- h5 {font-size: 16px;margin: 20px 0 10px;}
- em{width: 35px;height: 3px;background: #00b96b;display: block;}
- .card-des{
- font-size: 14px;margin: 20px 0 10px;text-align: justify;line-height: 22px;
- }
- }
- .mta-card-row{
- margin-bottom: 10px;
- >span{width: 44%;font-size: 14px;margin: 0 3%;}
- }
- }
- }
- </style>
|