wyg
2024-06-14 a57dc2fae73d6e0dd315a120ca43ee685a6c7b7c
提交 | 用户 | 时间
a57dc2 1 <template>
W 2   <el-image
3     :src="`${realSrc}`"
4     fit="cover"
5     :style="`width:${realWidth};height:${realHeight};`"
6     :preview-src-list="realSrcList"
7   >
8     <div slot="error" class="image-slot">
9       <i class="el-icon-picture-outline"></i>
10     </div>
11   </el-image>
12 </template>
13
14 <script>
15
16 export default {
17   name: "ImagePreview",
18   props: {
19     src: {
20       type: String,
21       default: ""
22     },
23     width: {
24       type: [Number, String],
25       default: ""
26     },
27     height: {
28       type: [Number, String],
29       default: ""
30     }
31   },
32   computed: {
33     realSrc() {
34       if (!this.src) {
35         return;
36       }
37       let real_src = this.src.split(",")[0];
38       return real_src;
39     },
40     realSrcList() {
41       if (!this.src) {
42         return;
43       }
44       let real_src_list = this.src.split(",");
45       let srcList = [];
46       real_src_list.forEach(item => {
47         return srcList.push(item);
48       });
49       return srcList;
50     },
51     realWidth() {
52       return typeof this.width == "string" ? this.width : `${this.width}px`;
53     },
54     realHeight() {
55       return typeof this.height == "string" ? this.height : `${this.height}px`;
56     }
57   },
58 };
59 </script>
60
61 <style lang="scss" scoped>
62 .el-image {
63   border-radius: 5px;
64   background-color: #ebeef5;
65   box-shadow: 0 0 5px 1px #ccc;
66   ::v-deep .el-image__inner {
67     transition: all 0.3s;
68     cursor: pointer;
69     &:hover {
70       transform: scale(1.2);
71     }
72   }
73   ::v-deep .image-slot {
74     display: flex;
75     justify-content: center;
76     align-items: center;
77     width: 100%;
78     height: 100%;
79     color: #909399;
80     font-size: 30px;
81   }
82 }
83 </style>