当前位置:   article > 正文

vue Element组件上传文件-去掉文件列表_el-upload上传不要显示文件名

el-upload上传不要显示文件名
 <div style="float: right;display: inline-block">
   <form class="form-horizontal upload-block" id="upload">
     <el-upload
       class="upload-demo"
       ref="upload"
       action="/api/features/upload"
       :limit="1"
       accept='.xlsx'
       :on-success="uploadSuccess"
       :on-error="uploadError">
       <el-button size="small" type="primary" style="float: right;margin-left:10px;" class="taskBtn">点击上传</el-button>
       <!--        <div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>-->
     </el-upload>
   </form>
 </div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

javascript

	  //文件上传事件
      uploadSuccess(res) {
        console.log(res);
        this.$refs.upload.clearFiles(); //去掉文件列表
        this.$message({  //弹窗
          message: 'Excel导入成功',
          type: 'success',
          center: true,
          duration: 1000
        });
      },
      uploadError(res){
        console.log(res);
        this.$refs.upload.clearFiles(); //去掉文件列表
        this.$message({  //弹窗
          type: 'error',
          message: 'Excel导入失败!',
          center: true,
          duration: 1000
        });
      }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/473041
推荐阅读
相关标签