当前位置:   article > 正文

el-upload 自定义上传成功 点击第二次上传没反应_el-upload limit1二次上传有问题

el-upload limit1二次上传有问题
<el-upload
   ref="uploadexcel"
   class="upload-demo"
   :limit="1"
   :show-file-list="false"
   :before-upload="beforeUploadExcel"
   :http-request="importSceneDicWord"
   :file-list="fileListExcel"
   style="display: inline-block"
 >
   <span class="userbtn marginL15">
     <text>导入Excel</text>
   </span>
 </el-upload>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
<script>
export default {
data() {
    return {
      fileListExcel: [],
    };
  },
methods: {
	async importSceneDicWord(file) {
      let formdata = new FormData();//需要用formdata转成二进制流
      formdata.append("file", file.file);//"file"是后端参数
      let res = await importSensitiveAPI(formdata);
      if (res.code == 200 || res.code == "200") {
        this.$refs.uploadexcel.clearFiles(); //上传成功后清除内容,不然第二次上传没用
        this.fileListExcel = [];//清空列表
        ElMessage({
          message: "文件上传成功",
          type: "success",
        });
      } else {
        this.$refs.uploadexcel.clearFiles(); //上传失败后清除内容,不然第二次上传没用
        this.fileListExcel = [];//清空列表
        ElMessage.error("文件上传失败  " + res.data);
      }
    },
}
}
</script>
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/472982
推荐阅读
相关标签
  

闽ICP备14008679号