123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <div class="client-gangwei-box">
- <h4 class="gangwei-label" v-if="label">{{label}}</h4>
- <div class="gangwei-row mta-hidden-xs" v-for="(rowList,index) in myListPc" :key="`pc-${index}`">
- <template v-for="(des,ind) in rowList">
- <!-- 站位div -->
- <div v-if="des.empty"></div>
- <iconGangwei class="my-icon" :key="ind" :des="des" :style="iconStylePc"></iconGangwei>
- </template>
- </div>
- <div class="gangwei-row mta-hidden-sm cur-h5" v-for="(rowList,index) in myListH5" :key="`h5${index}`">
- <template v-for="(des,ind) in rowList">
- <!-- 站位div -->
- <div v-if="des.empty"></div>
- <iconGangwei v-else class="my-icon" :key="ind" :des="des" :style="iconStyleH5"></iconGangwei>
- </template>
- </div>
- </div>
- </template>
- <script>
- import iconGangwei from "@/components/common/iconGangwei";
- export default {
- name: "gangweiList",
- props: {
- label: {
- type: String,
- },
- list: {
- type: Array,
- default: () => ([])
- },
- pcNum: {
- type: Number,
- default: 4
- },
- h5Num: {
- type: Number,
- default: 2
- },
- PcMargin: {
- type: Number,
- default: 308
- },
- H5Margin: {
- type: Number,
- default: 120
- }
- },
- computed: {
- myListPc() {
- const count = this.pcNum;
- const row = Math.ceil(this.list.length / count);
- const result = [];
- for (let i = 1; i <= row; i++) {
- const start = (i - 1) * count;
- const end = (i * count)
- const curList = this.list.slice(start, end);
- if (curList.length < count) {
- curList.push({type: 'empty'});
- }
- result.push(curList)
- }
- return result;
- },
- myListH5() {
- const count = this.h5Num;
- const row = Math.ceil(this.list.length / count);
- const result = [];
- for (let i = 1; i <= row; i++) {
- const start = (i - 1) * count;
- const end = (i * count)
- const curList = this.list.slice(start, end)
- if (curList.length < count) {
- curList.push({type: 'empty'});
- }
- result.push(curList)
- }
- return result;
- },
- iconStylePc() {
- return `margin-right: ${this.PcMargin}px`
- },
- iconStyleH5() {
- return `margin-right: ${this.H5Margin}%`
- }
- },
- components: {
- iconGangwei
- }
- }
- </script>
- <style lang="scss" scoped>
- .client-gangwei-box {
- margin: 0 auto;
- .gangwei-row {
- width: 98%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- margin-bottom: 119px;
- .my-icon {
- &:last-child {
- margin-right: 0 !important;
- }
- }
- }
- .gangwei-label {
- text-align: center;
- font-size: 30px;
- color: #333;
- margin-bottom: 160px;
- margin-top: 90px;
- font-weight: 800;
- }
- }
- .client-gangwei-box {
- @media (max-width: 768px){
- .gangwei-label {
- margin-bottom: 60px;
- }
- .gangwei-row {
- margin-bottom: 60px;
- }
- }
- }
- </style>
|