element-ui上传一张图片后隐藏上传按钮功能

html部分 

          
            
              
              
              
注:建议尺寸:650*220像素

js部分

    // 封面大图上传回显
    uploadSuccess (res, file) {
      if (res.code === 200) {
        // picUrl是显示的地址,pic是要回传的地址
        // console.log(res.data.picUrl)
        this.formData.cover_big = res.data.picUrl
        // this.formData.pic = res.data.pic
      } else {
        this.$message.error(res.msg)
      }
    },

 

你可能感兴趣的:(js,vue)