-
Notifications
You must be signed in to change notification settings - Fork 0
/
PictureUpload.vue
99 lines (95 loc) · 2.94 KB
/
PictureUpload.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
<template>
<div>
<uploader
browse_button="browse_button"
:url="server_config.url+'/File/'"
:FilesAdded="filesAdded"
:BeforeUpload="beforeUpload"
@inputUploader="inputUploader"
/>
<el-button id="browse_button" type="primary">选择图片</el-button>
<br/>
<br/>
<el-tag type="info">图片预览区域</el-tag>
<el-row style="height: 360px; width: 100%; background-color: honeydew" >
<el-col style="margin: 20px 20px" :span="4" v-for="(image, index) in images" :key="index" :offset="index > 0 ? 1 : 0">
<el-card :body-style="{ padding: '0px' }">
<img width="240px" height="240px" :src="image.src" class="image">
<hr/>
<div style="padding: 5px; display: flex">
<div style="flex: 3; display: flex; justify-content:center;align-items:center;">
<span v-if="image.file.status === 1" style="color: aqua;">准备上传</span>
<span v-if="image.file.status === 4" style="color: brown">上传失败</span>
<span v-if="image.file.status === 5" style="color: chartreuse">已上传</span>
<el-progress v-if="image.file.status === 2" :text-inside="true" :stroke-width="20" :percentage="image.file.percent"></el-progress>
</div>
<el-button style="flex: 1" type="text" class="button" @click="deleteFile(index,image.file)">删除</el-button>
</div>
</el-card>
</el-col>
</el-row>
<br/>
<el-button type="danger" @click="up.start()">开始上传</el-button>
</div>
</template>
<script>
import Uploader from './Uploader'
import FileUrl from '../models/file-url'
import FileMd5 from "../models/file-md5";
export default {
name: "PictureUpload",
data() {
return {
server_config: this.global.server_config,
files:[],
up: {},
images: [],
changed: false
}
},
components: {
'uploader': Uploader
},
watch: {
changed() {
let images = [];
this.files.forEach((e) => {
images.push({src: e.imgsrc, file: e});
});
this.images = images;
}
},
methods: {
inputUploader(up) {
this.up = up;
this.files = up.files;
},
filesAdded(up, files) {
files.forEach((f) => {
FileUrl(f.getNative(), (err, imgsrc) => {
f.imgsrc = imgsrc;
this.changed = !this.changed;
});
FileMd5(f.getNative(), (e, md5) => {
f["md5"] = md5;
});
});
},
deleteFile(index,file) {
this.images.splice(index,1);
this.up.removeFile(file);
},
beforeUpload(up, file) {
up.setOption("multipart_params", {
appId: "1",
appFileId: file.id,
"fileName":file.name,
"size":file.size,
"md5":file.md5
});
}
}
}
</script>
<style scoped>
</style>