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
36
37
38
39
40
41
42
43
44
| <script setup>
| import image5 from "@/views/home/images/质控室.jpg";
|
| const props = defineProps({
| info: {
| type: Object,
| default() {
| return {
| num: 99,
| name: "",
| img: {
| src: "",
| width: 100,
| height: 100
| }
| }
| }
| }
| });
| </script>
|
| <template>
| <div class="home-detail">
| <div class="home-detail-img">
| <img :src="info.img.src" alt=""/>
| </div>
| </div>
| </template>
|
| <style lang="less" scoped>
| .home-detail {
| width: 600px;
| text-align: center;
| background-color: #ffffff;
| }
| .home-detail-img {
| display: inline-block;
| width: 500px;
| img {
| height: auto;
| width: 100%;
| }
| }
| </style>
|
|