-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathhello.vue
121 lines (99 loc) · 2.34 KB
/
hello.vue
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<template>
<div class='finish_room'>
<div class='finish_room2'>
<div v-for='(item ,index ) in imgs' class='room_img'>
<img :src="item">
<span @click='delete_img(index)'><img src="./imgs/delete.png"></span>
</div>
<div class='room_add_img'>
<span><img src="./imgs/add_img.png"></span>
<span>上传图片</span>
<input @change='add_img' type="file">
</div>
</div>
</div>
</template>
<script >
module.exports={
data:function(){
return{
imgs:[],
}
},
methods:{
delete_img(item){
this.imgs.splice(item,1);
},
add_img(event){
var reader =new FileReader();
var img1=event.target.files[0];
reader.readAsDataURL(img1);
var that=this;
reader.onloadend=function(){
that.imgs.push(reader.result)
}
}
}
}
</script>
<style scoped >
.finish_room{
width: 430px;
height: auto;
}
.finish_room2{
width: 100%;
height: auto;
padding-top: 15px;
padding-bottom: 15px;
display: flex;
align-items: center;
border-bottom: 2px solid #e1e1e1;
}
.finish_room2 .room_img{
width: 150px;
height: 100px;
margin-right: 10px;
position: relative;
overflow: hidden;
}
.finish_room2 .room_img img{
width: 100%;
height: 100%;
}
.finish_room2>.room_img span{
position: absolute;
width: auto;
height: auto;
right: 5px;
bottom:3px;
}
.room_add_img{
width: 148px;
height: 98px;
border:1px solid #e1e1e1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
position: relative;
}
.room_add_img >span:nth-child(1){
margin-top: 20px;
width: 40px;
height: 40px;
overflow: hidden;
}
.room_add_img >span:nth-child(2){
margin-bottom: 10px;
}
.room_add_img input{
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 99999;
opacity: 0;
}
</style>