当前位置:   article > 正文

element ui 上传文件组件,可以选中文件夹并上传文件夹内所有文件_elementui中选择文件夹并获取文件夹路径

elementui中选择文件夹并获取文件夹路径
<template>
    <el-upload
            class="upload-demo"
            action="#"
            :on-remove="fileRemoveHandle4"
            :on-change="fileChangeHandle4"
            accept=""
            :auto-upload="false"
            multiple
            :file-list="form.instFilePics"
            ref="uploadFile">
            <el-button size="small" type="primary" :title="form.instFile.length == 0 || !form.instFile  ? '请先上传Md文件' : ''">
                <i class="el-icon-folder-opened"></i>
            </el-button>
    </el-upload>
</template>

<script>
    export default {
        name: "uploadFile",
        data(){
            return {
                form:{
                    instFilePics:[],
                    instFile:[]
                }
            }
        },
        mounted() {
            this.$refs.uploadFile.$children[0].$refs.input.webkitdirectory = true;
        },
        methods:{
            // 使用说明文档 路径
            fileChangeHandle4(file, fileList, name) {
                this.form.instFilePics = fileList
            },
            // 使用说明文档 路径
            fileRemoveHandle4(file, fileList, name) {
                // if (file.id) {
                //     this.instFilePics.push(file.id);
                // }
                this.form.instFilePics = fileList
            },

        }

    }
</script>

<style scoped>

</style>
  • 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
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号