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
| <template>
| <el-upload
| action="#"
| list-type="picture-card"
| :auto-upload="false"
| :on-change="selFile"
| :on-remove="removeFile"
| :limit="limit"
| :file-list="fileList"
| :on-exceed="exceedFile"
| >
| +Upload
| </el-upload>
| </template>
|
| <script>
| export default {
| props:{
| limit:{
| type:Number,
| default:1
| },
| fileList:Array
| },
| name: "Upload",
| methods:{
| selFile(file,fileList){
| this.$emit("selFile",fileList);
| },
| removeFile(file,fileList){
| this.$emit("selFile",fileList);
| },
| exceedFile(){
| this.$message.error("您选择的文件数量超出上限...");
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|