zxl
3 天以前 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
 
<template>
  <div class="layout">
      <img class="image-mode" :src="res.list[0].img" alt="">
      <img class="image-mode" :src="res.list[1].img" alt="">
      <img class="image-mode" :src="res.list[2].img" alt="">
  </div>
</template>
 
<script>
export default {
  title: "三列单行图片模块",
  props: ["res"],
};
</script>
<style lang="scss" scoped>
@import "./tpl.scss";
.layout {
   background: #e8e8e8;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
img{
   width: 111px !important;
}
</style>