3affd6f3
梁灏
init upload compo...
|
1
|
<template>
|
5d08ddf2
梁灏
support Progress ...
|
2
|
<div>
|
bf9649f6
梁灏
add Form
|
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
|
<div class="demo-upload-list" v-for="item in uploadList">
<template v-if="item.status === 'finished'">
<img :src="item.url">
<div class="demo-upload-list-cover">
<Icon type="ios-eye-outline" @click.native="handleView(item.name)"></Icon>
<Icon type="ios-trash-outline" @click.native="handleRemove(item)"></Icon>
</div>
</template>
<template v-else>
<i-progress v-if="item.showProgress" :percent="item.percentage" hide-info></i-progress>
</template>
</div>
<Upload
ref="upload"
:show-upload-list="false"
:default-file-list="defaultList"
:on-success="handleSuccess"
:format="['jpg','jpeg','png']"
:max-size="2048"
:on-format-error="handleFormatError"
:on-exceeded-size="handleMaxSize"
@on-progress="handleProgress"
:before-upload="handleBeforeUpload"
multiple
type="drag"
action="//jsonplaceholder.typicode.com/posts/"
style="display: inline-block;width:58px;">
<div style="width: 58px;height:58px;line-height: 58px;">
<Icon type="camera" size="20"></Icon>
</div>
|
5d08ddf2
梁灏
support Progress ...
|
33
|
</Upload>
|
bf9649f6
梁灏
add Form
|
34
|
{{ visible }}
|
ddef2bb3
梁灏
update Upload
|
35
|
</div>
|
3affd6f3
梁灏
init upload compo...
|
36
37
38
|
</template>
<script>
export default {
|
3affd6f3
梁灏
init upload compo...
|
39
|
data () {
|
ddef2bb3
梁灏
update Upload
|
40
|
return {
|
bf9649f6
梁灏
add Form
|
41
42
43
44
45
46
47
48
49
50
51
52
53
|
defaultList: [
{
'name': 'a42bdcc1178e62b4694c830f028db5c0',
'url': 'https://o5wwk8baw.qnssl.com/a42bdcc1178e62b4694c830f028db5c0/avatar'
},
{
'name': 'bc7521e033abdd1e92222d733590f104',
'url': 'https://o5wwk8baw.qnssl.com/bc7521e033abdd1e92222d733590f104/avatar'
}
],
imgName: '',
visible: false,
uploadList: []
|
a6ac0a76
梁灏
update Upload
|
54
55
|
}
},
|
bf9649f6
梁灏
add Form
|
56
57
58
59
60
61
62
63
64
65
66
67
|
computed: {
// uploadList () {
// return this.$refs.upload ? this.$refs.upload.fileList : [];
// }
},
watch: {
},
mounted () {
this.uploadList = this.$refs.upload.fileList;
// console.log(this.$refs.upload.fileList)
},
|
a6ac0a76
梁灏
update Upload
|
68
|
methods: {
|
bf9649f6
梁灏
add Form
|
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
|
handleView (name) {
this.imgName = name;
this.visible = true;
},
handleRemove (file) {
// 从 upload 实例删除数据
const fileList = this.$refs.upload.fileList;
this.$refs.upload.fileList.splice(fileList.indexOf(file), 1);
},
handleSuccess (res, file) {
// 因为上传过程为实例,这里模拟添加 url
file.url = 'https://o5wwk8baw.qnssl.com/7eb99afb9d5f317c912f08b5212fd69a/avatar';
file.name = '7eb99afb9d5f317c912f08b5212fd69a';
},
handleFormatError (file) {
this.$Notice.warning({
title: '文件格式不正确',
desc: '文件 ' + file.name + ' 格式不正确,请上传 jpg 或 png 格式的图片。'
});
},
handleMaxSize (file) {
this.$Notice.warning({
title: '超出文件大小限制',
desc: '文件 ' + file.name + ' 太大,不能超过 2M。'
});
},
handleBeforeUpload () {
const check = this.uploadList.length < 5;
if (!check) {
this.$Notice.warning({
title: '最多只能上传 5 张图片。'
});
}
return check;
|
a6ac0a76
梁灏
update Upload
|
103
|
},
|
bf9649f6
梁灏
add Form
|
104
105
|
handleProgress (s) {
console.log(s)
|
a6ac0a76
梁灏
update Upload
|
106
107
108
109
|
}
}
}
</script>
|
bf9649f6
梁灏
add Form
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
<style>
.demo-upload-list{
display: inline-block;
width: 60px;
height: 60px;
text-align: center;
line-height: 60px;
border: 1px solid transparent;
border-radius: 4px;
overflow: hidden;
background: #fff;
position: relative;
box-shadow: 0 1px 1px rgba(0,0,0,.2);
margin-right: 4px;
}
.demo-upload-list img{
width: 100%;
height: 100%;
}
.demo-upload-list-cover{
display: none;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,.6);
}
.demo-upload-list:hover .demo-upload-list-cover{
display: block;
}
.demo-upload-list-cover i{
color: #fff;
font-size: 20px;
cursor: pointer;
margin: 0 2px;
}
</style>
<!--<template>-->
<!--<div>-->
<!--<Upload action="//jsonplaceholder.typicode.com/posts/" :before-upload="handleBeforeUpload" ref="file">-->
<!--<i-button type="ghost" icon="ios-cloud-upload-outline">选择文件</i-button>-->
<!--</Upload>-->
<!--<i-button @click.native="handleUpload">上传</i-button>-->
<!--</div>-->
<!--</template>-->
<!--<script>-->
<!--export default {-->
<!--data () {-->
<!--return {-->
<!--file: null-->
<!--}-->
<!--},-->
<!--methods: {-->
<!--handleBeforeUpload (file) {-->
<!--this.file = file;-->
<!--return false;-->
<!--},-->
<!--handleUpload () {-->
<!--this.$refs.file.post(this.file);-->
<!--}-->
<!--}-->
<!--}-->
<!--</script>-->
|