上传pdf

           <el-button
            size="mini"
            class="config-btn"
            style="width:120px;"
            @click="addGroup(groupList.$index, groupList)"
          >
          <el-upload
                class="upload-demo"
                action="doUpload"
                :limit="1"
                :auto-upload="true"
                ref="upload"
                accept="application/pdf"
                :before-upload="beforeAvatarUpload"
                :http-request="uploadTest"
                :on-exceed="handleExceed"
                >
              <el-button size="small" type="primary">点击上传</el-button>
          </el-upload>
          </el-button>
    uploadTest(file){
      // console.log(111)
        console.log(file)
              let fileObj = file.file;
      const form = new FormData(); // FormData 对象   把file转为FormData格式
      form.append("file", fileObj); // 文件对象  'upload'是后台接收的参数名
            // this.$http.post('/vue-element-admin/user/login',{username: 'admin'.trim(), password:123456})
      // .then((response) => {
      //   const {data} = response
      //   // console.log(response,555)
      // })
      console.log(form,'11111')
      //上传pdf 的时候需要给传参数id
      form.append('id',this.idadd)
      console.log(this.idadd)
                let requestConfig = {
                    headers: {
                        'Content-Type': 'multipart/form-data'
                    },
                }
      this.$http.post(`woas/poCharge/upload`,form)
      .then(response => {
          console.log("response", response);
        }).catch(reason => {
          this.$message({
            showClose: true,
            message: reason,
            type: "error"
          });
        });
    },
    handleExceed (){
     this.$message.warning(`当前限制选择 1 个文件,请删除后继续上传`);
    },
      beforeAvatarUpload(file) {
        console.log(file)
        const ispdf = file.type === 'application/pdf';
        if (!ispdf ){
          this.$message.error('上传文件只能是 pdf 格式!');
        }
        return ispdf;
      },

pdf 预览

<iframe :src="src" style="width:100%;height:1300px"></iframe>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值