tui-upload.vue
11.2 KB
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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<template>
<view class="tui-container">
<view class="tui-upload-box">
<view class="tui-image-item" v-for="(item,index) in imageList" :key="index">
<image :src="item" class="tui-item-img" @click.stop="previewImage(index)" mode="aspectFill"></image>
<view v-if="!forbidDel" class="tui-img-del" @click.stop="delImage(index)"></view>
<view v-if="statusArr[index]!=1" class="tui-upload-mask">
<view class="tui-upload-loading" v-if="statusArr[index]==2"></view>
<text class="tui-tips">{{statusArr[index]==2?'上传中...':'上传失败'}}</text>
<view class="tui-mask-btn" v-if="statusArr[index]==3" @click.stop="reUpLoad(index)" hover-class="tui-btn-hover"
:hover-stay-time="150">重新上传</view>
</view>
</view>
<view v-if="isShowAdd" class="tui-upload-add" @click="chooseImage">
<view class="tui-upload-icon tui-icon-plus"></view>
</view>
</view>
</view>
</template>
<script>
export default {
name: 'tuiUpload',
props: {
//初始化图片路径
value: {
type: Array,
default () {
return []
}
},
//禁用删除
forbidDel: {
type: Boolean,
default: false
},
//禁用添加
forbidAdd: {
type: Boolean,
default: false
},
//服务器地址
serverUrl: {
type: String,
default: ""
},
//限制数
limit: {
type: Number,
default: 9
},
//original 原图,compressed 压缩图,默认二者都有
sizeType: {
type: Array,
default () {
return ['original', 'compressed']
}
},
//album 从相册选图,camera 使用相机,默认二者都有。如需直接开相机或直接选相册,请只使用一个选项
sourceType: {
type: Array,
default () {
return ['album', 'camera']
}
},
//可上传图片类型,默认为空,不限制 Array<String> ['jpg','png','gif']
imageFormat: {
type: Array,
default () {
return []
}
},
//单张图片大小限制 MB
size: {
type: Number,
default: 4
},
//项目名,默认为 file
fileKeyName: {
type: String,
default: "file"
},
//HTTP 请求 Header, header 中不能设置 Referer。
header: {
type: Object,
default () {
return {}
}
},
//HTTP 请求中其他额外的 form data
formData: {
type: Object,
default () {
return {}
}
}
},
data() {
return {
//图片地址
imageList: [],
//上传状态:1-上传成功 2-上传中 3-上传失败
statusArr: []
}
},
created() {
this.initImages()
},
watch: {
value(val) {
if (val) {
this.initImages()
}
}
},
computed: {
isShowAdd() {
let isShow = true;
if (this.forbidAdd || (this.limit && this.imageList.length >= this.limit)) {
isShow = false;
}
return isShow
}
},
methods: {
initImages() {
this.imageList = [...this.value];
for (let item of this.imageList) {
this.statusArr.push("1")
}
},
// 重新上传
reUpLoad(index) {
this.$set(this.statusArr, index, "2")
this.change()
this.uploadImage(index, this.imageList[index]).then(() => {
this.change()
}).catch(() => {
this.change()
})
},
change() {
let status = ~this.statusArr.indexOf("2") ? 2 : 1
if (status != 2 && ~this.statusArr.indexOf("3")) {
// 上传失败
status = 3
}
this.$emit('complete', {
status: status,
imgArr: this.imageList
})
},
toast(text) {
text && uni.showToast({
title: text,
icon: "none"
});
},
chooseImage: function() {
let _this = this;
dd.chooseImage({
count: _this.limit - _this.imageList.length,
sourceType: _this.sourceType,
success: function(e) {
let imageArr = [];
for (let i = 0; i < e.files.length; i++) {
let len = _this.imageList.length;
if (len >= _this.limit) {
_this.toast(`最多可上传${_this.limit}张图片`);
break;
}
//过滤图片类型
let path = e.files[i].path;
if (_this.imageFormat.length > 0) {
let format = ""
// #ifdef H5
let type = e.tempFiles[i].type;
format = type.split('/')[1]
// #endif
// #ifndef H5
format = path.split(".")[(path.split(".")).length - 1];
// #endif
if (_this.imageFormat.indexOf(format) == -1) {
let text = `只能上传 ${_this.imageFormat.join(',')} 格式图片!`
_this.toast(text);
continue;
}
}
//过滤超出大小限制图片
let size = e.files[i].size;
if (_this.size * 1024 * 1024 < size){
let err=`单张图片大小不能超过:${_this.size}MB`
_this.toast(err);
continue;
}
imageArr.push(path)
_this.imageList.push(path)
_this.statusArr.push("2")
}
_this.change()
let start = _this.imageList.length - imageArr.length
for (let j = 0; j < imageArr.length; j++) {
let index = start + j
//服务器地址
if (_this.serverUrl) {
_this.uploadImage(index, imageArr[j]).then(() => {
_this.change()
}).catch(() => {
_this.change()
})
} else {
//无服务器地址则直接返回成功
_this.$set(_this.statusArr, index, "1")
_this.change()
}
}
}
})
},
uploadImage: function(index, url) {
let _this = this;
return new Promise((resolve, reject) => {
uni.uploadFile({
url: this.serverUrl,
name: this.fileKeyName,
header: this.header,
formData: this.formData,
filePath: url,
success: function(res) {
if (res.statusCode == 200) {
//返回结果 此处需要按接口实际返回进行修改
let d = JSON.parse(res.data.replace(/\ufeff/g, "") || "{}");
let resUrl = d.result ? d.result[0] : '';
//判断code,以实际接口规范判断
if (d.success && d.result) {
// 上传成功 d.url 为上传后图片地址,以实际接口返回为准
resUrl && (_this.imageList[index] = resUrl);
_this.$set(_this.statusArr, index, resUrl ? '1' : '3');
} else {
// 上传失败
_this.$set(_this.statusArr, index, "3")
}
resolve(index)
} else {
_this.$set(_this.statusArr, index, "3")
reject(index)
}
},
fail: function(res) {
_this.$set(_this.statusArr, index, "3")
reject(index)
}
})
})
},
delImage: function(index) {
uni.showModal({
title: '提示',
content: '确定删除这张图片吗?',
confirmButtonText: '确定',
cancelButtonText: '取消',
success: res => {
if (res.confirm) {
this.imageList.splice(index, 1);
this.statusArr.splice(index, 1);
this.$emit('remove', {
index: index
});
this.change();
}
}
});
},
previewImage: function(index) {
if (!this.imageList.length) return;
uni.previewImage({
current: this.imageList[index],
loop: true,
urls: this.imageList
})
}
}
}
</script>
<style scoped>
@font-face {
font-family: 'tuiUpload';
src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAATcAA0AAAAAByQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEwAAAABoAAAAciR52BUdERUYAAASgAAAAHgAAAB4AKQALT1MvMgAAAaAAAABCAAAAVjxvR/tjbWFwAAAB+AAAAEUAAAFK5ibpuGdhc3AAAASYAAAACAAAAAj//wADZ2x5ZgAAAkwAAADXAAABAAmNjcZoZWFkAAABMAAAAC8AAAA2FpiS+WhoZWEAAAFgAAAAHQAAACQH3QOFaG10eAAAAeQAAAARAAAAEgwAACBsb2NhAAACQAAAAAwAAAAMAEoAgG1heHAAAAGAAAAAHwAAACABEgA2bmFtZQAAAyQAAAFJAAACiCnmEVVwb3N0AAAEcAAAACgAAAA6OMUs4HjaY2BkYGAAYo3boY/i+W2+MnCzMIDAzb3qdQj6fwPzf+YGIJeDgQkkCgA/KAtvAHjaY2BkYGBu+N/AEMPCAALM/xkYGVABCwBZ4wNrAAAAeNpjYGRgYGBl0GJgZgABJiDmAkIGhv9gPgMADTABSQB42mNgZGFgnMDAysDA1Ml0hoGBoR9CM75mMGLkAIoysDIzYAUBaa4pDA7PGJ9xMjf8b2CIYW5gaAAKM4LkANt9C+UAAHjaY2GAABYIVmBgAAAA+gAtAAAAeNpjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYnjE+4/z/n4EBQksxSf6GqgcCRjYGOIeRCUgwMaACRoZhDwCiLwmoAAAAAAAAAAAAAAAASgCAeNpdjkFKw0AARf/vkIR0BkPayWRKQZtYY90ohJju2kOIbtz0KD1HVm50UfEmWXoAr9ADOHFARHHzeY//Fx8Ci+FJfIgdJFa4AhgiMshbrCuIsLxhFJZVs+Vl1bT1GddtbXTC3OhohN4dg4BJ3zMJAnccyfm468ZzHXddrH9ZKbHzdf9n/vkY/xv9sPQXgGEvBrHHwst5kTbXLE+YpYVPkxepPmW94W16UbdNJd6f3SAzo5W7m1jaKd+8ZZIvk5nlKw9SK6Wle7BLS3f/bTzQLmfAF2T1NsQAeNp9kD1OAzEQhZ/zByQSQiCoXVEA2vyUKRMp9Ailo0g23pBo1155nUg5AS0VB6DlGByAGyDRcgpelkmTImvt6PObmeexAZzjGwr/3yXuhBWO8ShcwREy4Sr1F+Ea+V24jhY+hRvUf4SbuFUD4RYu1BsdVO2Eu5vSbcsKZxgIV3CKJ+Eq9ZVwjfwqXMcVPoQb1L+EmxjjV7iFa2WpDOFhMEFgnEFjig3jAjEcLJIyBtahOfRmEsxMTzd6ETubOBso71dilwMeaDnngCntPbdmvkon/mDLgdSYbh4FS7YpjS4idCgbXyyc1d2oc7D9nu22tNi/a4E1x+xRDWzU/D3bM9JIbAyvkJI18jK3pBJTj2hrrPG7ZynW814IiU68y/SIx5o0dTr3bmniwOLn8owcfbS5kj33qBw+Y1kIeb/dTsQgil2GP5PYcRkAAAB42mNgYoAALjDJyIAOWMGiTIxMjMxsKak5qSWpbFmZiRmJ+QAmgAUIAAAAAf//AAIAAQAAAAwAAAAWAAAAAgABAAMABAABAAQAAAACAAAAAHjaY2BgYGQAgqtL1DlA9M296nUwGgA+8QYgAAA=) format('woff');
font-weight: normal;
font-style: normal;
}
.tui-upload-icon {
font-family: "tuiUpload" !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 10rpx;
}
.tui-icon-delete:before {
content: "\e601";
}
.tui-icon-plus:before {
content: "\e609";
}
.tui-upload-box {
width: 100%;
display: flex;
flex-wrap: wrap;
}
.tui-upload-add {
width: 200rpx;
height: 200rpx;
font-size: 68rpx;
font-weight: 100;
border-radius: 20rpx;
color: #888;
background-color: #F6F6F6;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.tui-image-item {
width: 200rpx;
height: 200rpx;
border-radius: 20rpx;
position: relative;
margin-right: 20rpx;
margin-bottom: 20rpx;
}
.tui-image-item:nth-of-type(3n) {
margin-right: 0;
}
.tui-item-img {
width: 200rpx;
height: 200rpx;
border-radius: 20rpx;
display: block;
}
.tui-img-del {
width: 36rpx;
height: 36rpx;
position: absolute;
right: -12rpx;
top: -12rpx;
background-color: #EB0909;
border-radius: 50%;
color: white;
font-size: 34rpx;
/* z-index: 990; */
}
.tui-img-del::before {
content: '';
width: 16rpx;
height: 1px;
position: absolute;
left: 10rpx;
top: 18rpx;
background-color: #fff;
}
.tui-upload-mask {
width: 100%;
height: 100%;
border-radius: 30rpx;
position: absolute;
left: 0;
top: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding: 40rpx 0;
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.6);
}
.tui-upload-loading {
width: 28rpx;
height: 28rpx;
border-radius: 50%;
border: 2px solid;
border-color: #B2B2B2 #B2B2B2 #B2B2B2 #fff;
animation: tui-rotate 0.7s linear infinite;
}
@keyframes tui-rotate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.tui-tips {
font-size: 26rpx;
color: #fff;
}
.tui-mask-btn {
padding: 4rpx 16rpx;
border-radius: 40rpx;
text-align: center;
font-size: 24rpx;
color: #fff;
border: 1rpx solid #fff;
display: flex;
align-items: center;
justify-content: center;
}
.tui-btn-hover {
opacity: 0.8;
}
</style>