zoukankan      html  css  js  c++  java
  • elementUI 上传多图

    <el-upload
              :action="$store.state.baseURL+'/commonFile/upload.do'"
              list-type="picture-card"
              :on-success="handleSuccess"
              :on-preview="handlePictureCardPreview"
              :file-list="fileList"
              :on-remove="handleRemove">
           <i class="el-icon-plus"></i>
      </el-upload>
       <el-dialog :visible.sync="dialogVisible">
            <img width="100%" :src="dialogImageUrl" alt="">
       </el-dialog>
     
     
     
    // 文件上传成功
            handleSuccess(response, file, fileList) {
                console.log(file)
                 console.log(fileList)
                this.fileList = fileList.map(res => {
                    if(res.raw) {
                        return {
                            name: res.name,
                            id: res.response.data,
                            status: res.status,
                            raw: res.raw,
                            url: res.url
                        } 
                    }else {
                        return {
                            name: res.name,
                            id: res.id,
                            status: res.status,
                            url: res.url
                        }
                    }
                })
                console.log(this.fileList)
            },
     
    handlePictureCardPreview(file) {
                console.log(file)
                this.dialogImageUrl = file.url;
                this.dialogVisible = true;
            }
     
     
     handleRemove(file, fileList) {
                console.log(file)
                console.log(fileList)
                this.fileList = fileList;
            },
  • 相关阅读:
    jQuery源码解析(架构与依赖模块)第二章 核心模块
    jQuery源码解析(架构与依赖模块)第一章 理解架构
    js中运算符的优先级
    JS将时间与时间戳互转
    关于JavaScript scope的一切
    java中继承以及其他相关内容
    java中数组的内容
    关于java中的引用数据类型
    关于java的源文件结构以及常用的包
    Java语言的基础内容
  • 原文地址:https://www.cnblogs.com/lucy1111/p/13387907.html
Copyright © 2011-2022 走看看