对element-ui上传组件Upload 再简化

重置组件目的

对Upload 上传组件在简化的目的是对文件上传前的限制都统一到组件中去完成不在繁琐的每个去写,同时增加上传后图片的大图预览,音频试听,视频观看等。

组件代码(简化后代码基本兼容原有使用方法除了slot="file"外)

<template>
    <div>
        <el-upload :class="(listType=='single' && !$slots.default)? 'avatar-uploader':''" :action="url"
                   :headers="headers" :data="data" :multiple="multiple" :name="name" :drag="drag"
                   :with-credentials="withCredentials" :disabled="disabled" :limit="limit"
                   :show-file-list="isShowFileList" :list-type="customListType" :fileList="fileList"
                   :auto-upload="autoUpload" :http-request="httpRequest"
                   :before-upload="handleBeforeUpload"
                   :on-success="handleSuccess"
                   :on-exceed="handleExceed"
                   :on-error="handleError"
                   :on-preview="handlePreview"
                   :on-change="handleChange"
                   :on-progress="handleProgress"
                   :before-remove="handleBeforeRemove"
                   :on-remove="handleRemove">
            <template v-if="drag && !$slots.default">
                <i class="el-icon-upload"></i>
                <div class="el-upload__text">
                    {{$t('pages.common.dragFilesHere')}}<em>{{$t('pages.common.clickUpload')}}</em></div>
            </template>
            <!--单图片上传-->
            <template v-else-if="listType=='single' && !$slots.default">
                <el-image v-if="imageUrl" :src="imageUrl" class="avatar"></el-image>
                <i v-else class="el-icon-plus avatar-uploader-icon"></i>
            </template>
            <template v-else-if="(listType=='picture-card' || listType=='video') && !$slots.default">
                <i class="el-icon-plus"></i>
            </template>
            <template v-else-if="!$slots.default">
                <el-button size="small" type="primary">{{$t('pages.common.clickUpload')}}</el-button>
            </template>
            <slot></slot>
            <template slot="file" slot-scope="{file}" v-if="listType=='video'">
                <el-progress v-if="file.status === 'uploading'" type="circle"
                             :stroke-width="6"
                             :percentage="parsePercentage(file.percentage)">
                </el-progress>
                <div class="el-upload-list__item-thumbnail" v-if="file">
                    <video class="el-upload-list__item-thumbnail" :src="file.url"></video>
                    <span class="el-upload-list__item-actions">
                      <span class="el-upload-list__item-preview"
                            @click="handlePreview(file)">
                        <i class="sx-icon-video" style="font-size: 19px"></i>
                      </span>
                      <span class="el-upload-list__item-delete">
                        <i class="el-icon-delete" @click="handleRemove(file,fileList)"></i>
                      </span>
                    </span>
                </div>
            </template>
        </el-upload>
        <!-- 查看大图   -->
        <el-dialog title="大图预览" :visible.sync="dialogImageVisible" append-to-body>
            <img width="100%" :src="dialogImageUrl" alt="大图">
        </el-dialog>
        <!--观看视频-->
        <el-dialog title="赏析视频" :visible.sync="dialogVideoVisible" @close="handlePause" append-to-body>
            <video ref="video" style="width: 100%; height: 100%; display: block; outline: none;" :src="dialogVideoUrl"
                   controls
                   autoplay></video>
        </el-dialog>
        <!--试听音频-->
        <el-dialog title="试听音频" :visible.sync="dialogAudioVisible" @close="handlePause" append-to-body>
            <audio ref="audio" style="width: 100%; height: 50px; display: block; outline: none;" :src="dialogAudioUrl"
                   controls
                   autoplay></audio>
        </el-dialog>
    </div>
</template>

<script>
    import isEqual from 'lodash/isEqual'

    /*自定义上传 - element-ui上传再封装*/
    export default {
        name: "ElUploadCustom",
        data() {
            return {
                dialogImageVisible: false,
                dialogImageUrl: null,
                dialogVideoVisible: false,
                dialogVideoUrl: null,
                dialogAudioVisible: false,
                dialogAudioUrl: null,
                imageUrl: ''
            }
        },
        model: {
            prop: 'value',
            event: 'change'
        },
        props: {
           value:{
                type: Array,
                default() {
                    return [];
                }
            },
            action: {
                type: String,
                required: true
            },
            headers: {
                type: Object,
                default() {
                    return {};
                }
            },
            data: Object,
            multiple: Boolean,
            name: {
                type: String,
                default: 'file'
            },
            drag: Boolean,
            accept: String,
            flieSize: Number,
            withCredentials: Boolean,
            showFileList: {
                type: Boolean,
                default: true
            },
            listType: {
                type: String,
                default: 'text' // text,picture,picture-card single:单图片上传 video:上传视频 audio: 上传音频
            },
            disabled: Boolean,
            limit: Number,
            fileList: {
                type: Array,
                default() {
                    return [];
                }
            },
            autoUpload: {
                type: Boolean,
                default: true
            },
            httpRequest: Function,
            beforeUpload: Function,
            beforeRemove: Function,
            onRemove: Function,
            onChange: Function,
            onPreview: Function,
            onSuccess: Function,
            onProgress: Function,
            onError: Function,
            onExceed: Function
        },
        watch: {
            fileList: {
                handler: function (val) {
                    if (this.listType == 'single') {
                        this.imageUrl = val.length ? val[0].url : '';
                    }
                },
                immediate: true
            }
        },
        computed: {
            url() {
                if (/^((https|http|ftp|rtsp|mms)?:\/\/)[^\s]+/.test(this.action)) {
                    return this.action
                } else {
                    if (typeof this.httpRequest == "function") {
                        return '#';
                    } else {
                        return this.$http.defaults.baseURL + this.action;
                    }
                }
            },
            isShowFileList() {
                if (this.listType == 'single') {
                    return false;
                } else {
                    return this.showFileList;
                }
            },
            customListType() {
                if (this.listType == 'single' || this.listType == 'audio') {
                    return 'text';
                } else if (this.listType == 'video') {
                    return 'picture-card';
                } else {
                    return this.listType
                }
            }
        },
        methods: {
            //文件上传前事件
            handleBeforeUpload(file) {
                if (this.beforeUpload) {
                    return this.beforeUpload(file);
                } else {
                    //判断文件类型
                    const typeLimit = this.accept ? this.accept.split(',').includes(file.type) : true;
                    //判断文件大小
                    const sizeLinit = this.flieSize ? file.size / 1024 < this.flieSize : true;
                    if (!typeLimit) {
                        this.$message.error(this.$t('pages.common.uploadFileType', {type: this.accept}));
                    }
                    if (!sizeLinit) {
                        let flieSize = this.flieSize > 1024 ? parseInt(this.flieSize / 1024) + 'M' + this.flieSize % 1024 : this.flieSize;
                        this.$message.error(this.$t('pages.common.uploadFileSize', {size: flieSize}));
                    }
                    return typeLimit && sizeLinit;
                }
            },
            //文件上传超出限制事件
            handleExceed(files, fileList) {
                if (this.onExceed) {
                    this.onExceed(files, fileList);
                } else {
                    this.$message.error(this.$t('pages.common.uploadFileNumber', {number: this.limit}))
                }
            },
            //上传进度事件
            handleProgress(event, file, fileList) {
                if (this.onProgress) {
                    this.onProgress(event, file, fileList)
                }
            },
            //上传成功事件
            handleSuccess(res, file, fileList) {
                if (this.onSuccess) {
                    this.onSuccess(res, file, fileList);
                } else {
                    if (!res.code) {
                        if (this.listType == 'single') {
                            file.url = res.data;
                            this.imageUrl = res.data;
                            this.$emit('change', [file]);
                        } else {
                            fileList.forEach(item => {
                                if (isEqual(item, file)) {
                                    item.url = res.data
                                }
                            });
                            this.$emit('change', fileList);
                        }
                    } else {
                        this.handleRemove(file, fileList);
                        this.$message.error(this.$t('pages.common.uploadFileError'));
                    }
                }
            },
            //预览事件
            handlePreview(file) {
                if (this.onPreview) {
                    this.onPreview(file);
                } else {
                    if (this.listType == 'audio') {
                        this.dialogAudioUrl = file.url;
                        this.dialogAudioVisible = true;
                        if (this.$refs.video) {
                            this.$refs.video.remove()
                        }
                    } else if (this.listType == 'video') {
                        this.dialogVideoUrl = file.url;
                        this.dialogVideoVisible = true;
                        if (this.$refs.audio) {
                            this.$refs.audio.remove()
                        }
                    } else {
                        //没有提供文件类型就下载判定
                        if (!file.raw) {
                            let xhr = new XMLHttpRequest();
                            xhr.open("GET", file.url, true);
                            xhr.responseType = "blob";
                            xhr.onload = () => {
                                file.raw = xhr.response
                                //判断当前点击文件是否为图片类型 是显示大图预览
                                if (['image/png', 'image/jpeg', 'image/gif', 'application/x-jpg', 'application/x-png'].includes(file.raw.type)) {
                                    this.dialogImageUrl = file.url;
                                    this.dialogImageVisible = true;
                                }
                                //判断当前点击文件是否为音频类型 是显示试听音频
                                if (['audio/mp3'].includes(file.raw.type)) {
                                    this.dialogAudioUrl = file.url;
                                    this.dialogAudioVisible = true;
                                }
                                //判断当前点击文件是否为视频类型 是显示赏析视频
                                if (['video/mp4'].includes(file.raw.type)) {
                                    this.dialogVideoUrl = file.url;
                                    this.dialogVideoVisible = true;
                                }
                            };
                            xhr.send();
                        } else {
                            //判断当前点击文件是否为图片类型 是显示大图预览
                            if (['image/png', 'image/jpeg', 'image/gif'].includes(file.raw.type)) {
                                this.dialogImageUrl = file.url;
                                this.dialogImageVisible = true;
                            }
                            //判断当前点击文件是否为音频类型 是显示试听音频
                            if (['audio/mp3'].includes(file.raw.type)) {
                                this.dialogAudioUrl = file.url;
                                this.dialogAudioVisible = true;
                            }
                            //判断当前点击文件是否为视频类型 是显示赏析视频
                            if (['video/mp4'].includes(file.raw.type)) {
                                this.dialogVideoUrl = file.url;
                                this.dialogVideoVisible = true;
                            }
                        }
                    }
                }
            },
            //上传失败事件
            handleError(err, file, fileList) {
                if (this.onError) {
                    this.onError(err, file, fileList);
                } else {
                    this.handleRemove(file, fileList);
                    this.$message.error(this.$t('pages.common.uploadFileError'));
                }
            },
            //文件移除前事件
            handleBeforeRemove(file, fileList) {
                if (this.beforeRemove) {
                    this.beforeRemove(file, fileList);
                }

            },
            //删除事件
            handleRemove(file, fileList) {
                if (this.onRemove) {
                    this.onRemove(file, fileList);
                } else {
                    let index = fileList.findIndex(item => item.uid == file.uid);
                    if (index != -1) {
                        fileList.splice(index, 1);
                    }
                    this.$emit('change', fileList);
                }
            },
            //文件状态改变事件
            handleChange(file, fileList) {
                if (this.onChange) {
                    this.onChange(file, fileList);
                }
            },
            //暂停播放音频视频
            handlePause() {
                if (this.$refs.audio) {
                    this.$refs.audio.pause();
                    this.dialogAudioVisible = false;
                }
                if (this.$refs.video) {
                    this.$refs.video.pause();
                    this.dialogVideoVisible = false;
                }
            },
            //进度百分比
            parsePercentage(val) {
                return parseInt(val, 10);
            },
        },
        created() {
        }
    }
</script>

<style scoped>
    .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>

组件使用

<template>
  //@getData获取上传的文件列表  :flie-size 限制文件上传大小(如下限制500kb)不填无限制 accept限制文件上传类型(如下只能上传png和jpg图片)不填无限制
  <el-upload-custom v-model="picurls"  list-type="picture-card" :file-list="picurls"
                                      action="/SXBS-INFORMATION/file/uploadFileUsingOriginalFilename"
                                      :flie-size="500" accept="image/png,image/jpeg">
                    </el-upload-custom>
</template>
<script>
  export default {
    methods: {
    
   
    },
    data() {
      return {
          picurls:[]  
      };
    },
    mounted(){
     
    },
    created() {
       
    }
  }
</script>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351