2017-11-06 19:22:02 +08:00
< style >
.upload-tip {
color: #8492a6 ;
font-size: 12px;
margin-top: 7px;
}
.demo-box {
margin-bottom: 24px;
.upload-demo {
width: 360px;
}
.avatar-uploader {
.el-upload {
border: 1px dashed #d9d9d9 ;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
2017-12-03 18:03:06 +08:00
2017-11-06 19:22:02 +08:00
& :hover, & :focus {
border-color: #409EFF ;
}
}
.avatar-uploader-icon {
font-size: 28px;
color: #8c939d ;
width: 178px;
height: @width ;
line-height: @height ;
text-align: center;
}
.avatar {
width: 178px;
height: @width ;
display: block;
}
}
}
< / style >
< script >
export default {
data() {
return {
fileList: [{
name: 'food.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}, {
name: 'food2.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}],
fileList2: [{
name: 'food.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}, {
name: 'food2.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}],
fileList3: [{
name: 'food.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}, {
name: 'food2.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}],
imageUrl: '',
dialogImageUrl: '',
dialogVisible: false
};
},
methods: {
handleRemove(file, fileList) {
console.log(file, fileList);
},
beforeUpload(file) {
if (file.size > 40000000) {
console.warn(file.name + ' is too large!');
return false;
}
return true;
},
handlePreview(file) {
console.log(file);
},
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
submitUpload() {
this.$refs.upload.submit();
},
handleAvatarSuccess(res, file) {
this.imageUrl = URL.createObjectURL(file.raw);
},
beforeAvatarUpload(file) {
const isJPG = file.type === 'image/jpeg';
const isLt2M = file.size / 1024 / 1024 < 2 ;
2018-10-08 10:48:50 +08:00
2017-11-06 19:22:02 +08:00
if (!isJPG) {
this.$message.error('Avatar picture must be JPG format!');
}
if (!isLt2M) {
this.$message.error('Avatar picture size can not exceed 2MB!');
}
return isJPG & & isLt2M;
},
handleChange(file, fileList) {
this.fileList3 = fileList.slice(-3);
},
handleExceed(files, fileList) {
this.$message.warning(`You can upload up to 3 files. You selected ${files.length} files this time, and ${files.length + fileList.length} files totally`);
}
}
}
< / script >
2017-11-11 13:40:09 +08:00
## Carga de archivos
2017-11-06 19:22:02 +08:00
2017-11-11 13:40:09 +08:00
Carga archivos haciendo clic o arrastrándolos.
2017-11-06 19:22:02 +08:00
2017-11-11 13:40:09 +08:00
### Clic para cargar archivos
2017-11-06 19:22:02 +08:00
2017-12-03 18:03:06 +08:00
:::demo Personalice el tipo y texto del botón utilizando la propiedad `slot` . Defina las propiedades `limit` y `on-exceed` para limitar el número máximo de archivos a subir y especifique un método para cuando el límite ha sido excedido.
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
multiple
:limit="3"
:on-exceed="handleExceed"
:file-list="fileList">
2017-11-11 13:40:09 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
< div slot = "tip" class = "el-upload__tip" > Solo archivos jpg/png con un tamaño menor de 500kb< / div >
2017-11-06 19:22:02 +08:00
< / el-upload >
< script >
export default {
data() {
return {
fileList: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
};
},
methods: {
handleRemove(file, fileList) {
console.log(file, fileList);
},
handlePreview(file) {
console.log(file);
},
handleExceed(files, fileList) {
2017-11-11 13:40:09 +08:00
this.$message.warning(`El límite es 3, haz seleccionado ${files.length} archivos esta vez, añade hasta ${files.length + fileList.length}`);
2017-11-06 19:22:02 +08:00
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Cargar avatar de usuario
2017-11-06 19:22:02 +08:00
2017-12-03 18:03:06 +08:00
Utilice el _hook_ `before-upload` para limitar el formato de archivo y su tamaño.
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="avatar-uploader"
action="https://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload">
< img v-if = "imageUrl" :src = "imageUrl" class = "avatar" >
< i v-else class = "el-icon-plus avatar-uploader-icon" > < / i >
< / el-upload >
< style >
.avatar-uploader .el-upload {
border: 1px dashed #d9d9d9 ;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.avatar-uploader .el-upload:hover {
border-color: #409EFF ;
}
.avatar-uploader-icon {
font-size: 28px;
color: #8c939d ;
width: 178px;
height: 178px;
line-height: 178px;
text-align: center;
}
.avatar {
width: 178px;
height: 178px;
display: block;
}
< / style >
< script >
export default {
data() {
return {
imageUrl: ''
};
},
methods: {
handleAvatarSuccess(res, file) {
this.imageUrl = URL.createObjectURL(file.raw);
},
beforeAvatarUpload(file) {
const isJPG = file.type === 'image/jpeg';
const isLt2M = file.size / 1024 / 1024 < 2 ;
if (!isJPG) {
2017-11-11 13:40:09 +08:00
this.$message.error('La imagen debe estar en formato JPG!');
2017-11-06 19:22:02 +08:00
}
if (!isLt2M) {
2017-11-11 13:40:09 +08:00
this.$message.error('La imagen excede los 2MB!');
2017-11-06 19:22:02 +08:00
}
return isJPG & & isLt2M;
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Pared de fotografías
2017-11-06 19:22:02 +08:00
2017-12-03 18:03:06 +08:00
Utilice la propiedad `list-type` para cambiar el estilo a un listado de archivos.
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
action="https://jsonplaceholder.typicode.com/posts/"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove">
< i class = "el-icon-plus" > < / i >
< / el-upload >
2018-01-28 14:44:53 +08:00
< el-dialog :visible . sync = "dialogVisible" >
2017-11-06 19:22:02 +08:00
< img width = "100%" :src = "dialogImageUrl" alt = "" >
< / el-dialog >
< script >
export default {
data() {
return {
dialogImageUrl: '',
dialogVisible: false
};
},
methods: {
handleRemove(file, fileList) {
console.log(file, fileList);
},
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Lista de archivos con miniatura
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList2"
list-type="picture">
2017-11-11 13:40:09 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
< div slot = "tip" class = "el-upload__tip" > Solo archivos jpg/png con un tamaño menor de 500kb< / div >
2017-11-06 19:22:02 +08:00
< / el-upload >
< script >
export default {
data() {
return {
fileList2: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
};
},
methods: {
handleRemove(file, fileList) {
console.log(file, fileList);
},
handlePreview(file) {
console.log(file);
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Control de lista de archivos
2017-11-06 19:22:02 +08:00
2017-12-03 18:03:06 +08:00
Utilice el _hook_ `on-change` para controlar la funcionalidad de la lista de archivos subidos.
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-change="handleChange"
:file-list="fileList3">
2017-11-11 13:40:09 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
< div slot = "tip" class = "el-upload__tip" > Solo archivos jpg/png con un tamaño menor de 500kb< / div >
2017-11-06 19:22:02 +08:00
< / el-upload >
< script >
export default {
data() {
return {
fileList3: [{
name: 'food.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}, {
name: 'food2.jpeg',
2018-04-03 11:50:20 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
2017-11-06 19:22:02 +08:00
}]
};
},
methods: {
handleChange(file, fileList) {
this.fileList3 = fileList.slice(-3);
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Arrastrar para cargar archivo
2017-11-06 19:22:02 +08:00
2017-12-03 18:03:06 +08:00
Puede arrastrar el archivo dentro de un área en especifico para cargar el archivo.
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="upload-demo"
drag
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
multiple>
< i class = "el-icon-upload" > < / i >
2017-11-11 13:40:09 +08:00
< div class = "el-upload__text" > Suelta tu archivo aquí o < em > haz clic para cargar< / em > < / div >
< div slot = "tip" class = "el-upload__tip" > Solo archivos jpg/png con un tamaño menor de 500kb< / div >
2017-11-06 19:22:02 +08:00
< / el-upload >
```
:::
2017-11-11 13:40:09 +08:00
### Carga normal
2017-11-06 19:22:02 +08:00
2017-12-12 12:45:09 +08:00
:::demo
2017-11-06 19:22:02 +08:00
```html
< el-upload
class="upload-demo"
ref="upload"
action="https://jsonplaceholder.typicode.com/posts/"
:auto-upload="false">
2017-11-11 13:40:09 +08:00
< el-button slot = "trigger" size = "small" type = "primary" > Selecciona un archivo< / el-button >
< el-button style = "margin-left: 10px;" size = "small" type = "success" @click =" submitUpload " > Cargar al servidor</ el-button >
< div slot = "tip" class = "el-upload__tip" > Solo archivos jpg/png con un tamaño menor de 500kb< / div >
2017-11-06 19:22:02 +08:00
< / el-upload >
< script >
export default {
methods: {
submitUpload() {
this.$refs.upload.submit();
}
}
}
< / script >
```
:::
2017-11-11 13:40:09 +08:00
### Atributos
2017-12-03 18:03:06 +08:00
| Atributo | Descripción | Tipo | Valores aceptados | Por defecto |
| ---------------- | ---------------------------------------- | ---------------------------------- | ------------------------- | ----------- |
| action | obligatorio, URL de la petición | string | — | — |
| headers | cabeceras de la petición | object | — | — |
| multiple | especifica si se permite subir múltiples archivos | boolean | — | — |
| data | opciones adicionales de la petición | object | — | — |
| name | nombre clave del archivo | string | — | file |
| with-credentials | especifica si enviará cookies | boolean | — | false |
| show-file-list | especifica si se debe mostrar la lista de archivos cargados | boolean | — | true |
| drag | se especifica si se activará el modo arrastrar y soltar | boolean | — | false |
| accept | acepta [tipos de archivos ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept ), puede no funcionar cuando `thumbnail-mode` esta en `true` | string | — | — |
| on-preview | _hook_ lanzado al hacer clic en los archivos subidos | function(file) | — | — |
| on-remove | _hook_ lanzado cuando los archivos son eliminados | function(file, fileList) | — | — |
| on-success | _hook_ lanzado cuando los archivos fueron cargados correctamente | function(response, file, fileList) | — | — |
| on-error | _hook_ lanzado cuando han ocurrido algunos errores | function(err, file, fileList) | — | — |
| on-progress | _hook_ lanzado cuando se produce algún progreso | function(event, file, fileList) | — | — |
| on-change | _hook_ lanzado cuando el archivo seleccionado se carga correctamente o falla | function(file, fileList) | — | — |
| before-upload | _hook_ lanzado antes de que el archivo sea cargado. Si este devuelve `true` o `Promise` entonces será rechazado, la carga puede ser cancelada | function(file) | — | — |
2017-12-26 00:09:45 +08:00
| before-remove | _hook_ lanzado antes de eliminar un archivo. Los parametros son el archivo y la lista de archivos. Si se devuelve `false` o se devuelve una `Promise` y que luego es rechazada, la eliminación será abortada. | function(file, fileList) | — | — |
2017-12-03 18:03:06 +08:00
| thumbnail-mode | especifica si se mostrará la miniatura | boolean | — | false |
| file-list | archivos cargados por defecto, por ejemplo, [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}] | array | — | [] |
| list-type | tipo de lista de archivos | string | text/picture/picture-card | text |
| auto-upload | se especifica si se autocargan archivos | boolean | — | true |
| http-request | sobreescribe el comportamiento por defecto de xhr, permitiendo implementar tu propia petición de carga de archivos | function | — | — |
| disabled | especifica si se deshabilita la carga de archivos | boolean | — | false |
| limit | número máximo de cargas permitidas | number | — | — |
| on-exceed | _hook_ lanzado cuando el límite ha sido excedido | function(files, fileList) | — | - |
2017-11-06 19:22:02 +08:00
2018-07-18 15:39:04 +08:00
### Slot
| Nombre | Descripcion |
| ------------ | ---------------------------------------- |
2018-07-27 11:08:21 +08:00
| trigger | contenido que desencadena el diálogo de archivo |
| tip | contenido de los tips |
2018-07-18 15:39:04 +08:00
2017-11-11 13:40:09 +08:00
### Métodos
2017-12-03 18:03:06 +08:00
| Nombre del método | Descripción | Parametros |
| ----------------- | ---------------------------------------- | ------------------------- |
| clearFiles | limpia la lista de archivos cargados (este método no esta soportado en el _hook_ `before-upload` ) | — |
| abort | cancela la petición de carga | ( file: fileList's item ) |
2018-10-08 10:48:50 +08:00
| submit | La lista de archivos se sube manualmente | — |