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
26
27
28
29
30
31
32
33
34
35
<template>
  <div class="layout">
    <div class="flex-two">
      <div class="flex-item">
        <img :src="res.list[0].img" alt />
      </div>
      <div class="flex-item">
        <img :src="res.list[1].img" alt />
      </div>
    </div>
  </div>
</template>
<script>
export default {
  title: "两张横图",
  props: ["res"],
};
</script>
<style lang="scss" scoped>
@import "./tpl.scss";
.flex-two {
  width: 100%;
  display: flex;
  height: 110px;
  overflow: hidden;
}
.flex-item {
  width: 50%;
  > img {
    display: block;
    max-width: 100%;
    height: 100%;
  }
}
</style>