zxl
2 天以前 b1c9a5d056e85fe8b0ee6e92f10e6e2c5495b356
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <div class="layout">
        <div class="flex-one">
            <img :src="res.list[0].img" alt="">
        </div>
    </div>
</template>
<script>
export default {
    props: ['res']
}
</script>
<style lang="scss" scoped>
@import './tpl.scss';
.flex-one{
    width: 100%;
    display: block;
    height: 110px;
    overflow: hidden;
    >img{
        width: 100%;
        height: 100%;
    }
}
</style>