el-upload 上传文件

这段内容展示了如何利用Element UI库的el-dialog组件和el-upload组件实现一个弹窗式的文件上传功能。用户点击上传按钮后,会弹出一个对话框,其中包含一个上传文件的表单。用户可以选择文件并点击上传按钮进行提交。文件上传成功后,会显示成功通知,错误时则显示错误通知。此功能适用于前端开发中的文件交互场景。
摘要由CSDN通过智能技术生成

 页面使用el-dialog 弹窗形式显示

<el-tag class="tag-item tag-width" style="cursor:pointer;" type="primary" @click="handleUpFile(row)">上传文件</el-tag>
<el-dialog title="上传" :visible.sync="dialogFileUploadVisible" class="file_dialog" width="30%">
  <el-upload ref="dataFormFile"
             :multiple="false"
             :limit="1"
             :data="fileUpData"
             :file-list="fileUpList"
             :auto-upload="false"
             :action="upload_file_url"
             :on-success="fileUpSuccess"
             :on-error="fileUpError">
    <el-button type="success">选择文件</el-button>
  </el-upload>
  <div slot="footer" class="dialog-footer">
    <el-button @click="dialogFileUploadVisible = false">取消</el-button>
    <el-button type="primary" @click="fileUpload()">上传</el-button>
  </div>
</el-dialog>

js代码

export default {
  data() {
    return {
      // 上传文件参数
      fileUpData: {}, // 文件上传附带参数
      fileUpList: [], // 上传的文件列表
      dialogFileUploadVisible: false,
      upload_file_url: process.env.VUE_APP_ADMIN_BASE_URL + '/common/upload/upload_file', // 文件上传地址
    }
  },
  methods: {
    /**
     * 文件上传弹窗显示
     */
    handleUpFile(row) {
      console.log(row.id)
      this.fileUpData = {
        book_id: row.id
      }
      this.dialogFileUploadVisible = true
    },

    /**
     * 文件上传成功时的钩子
     */
    fileUpSuccess(res, file, fileList) {
      console.log('文件上传成功', res)
      this.$notify.success({
        title: '成功',
        message: `文件上传成功`
      })
      this.fileUpList = []
      this.dialogFileUploadVisible = false
    },

    /**
     * 文件上传失败时的钩子
     */
    fileUpError(err, file, fileList) {
      console.log('文件上传失败', err)
      this.$notify.error({
        title: '错误',
        message: `文件上传失败`
      })
    },

    /**
     * 点击上传按钮时操作
     */
    fileUpload() {
      this.$refs.dataFormFile.submit()
    },
  }
}

 显示效果:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值