vue实现简单图片上传功能

本文实例为大家分享了vue实现简单图片上传的具体代码,供大家参考,具体内容如下

就是给自己留个参照,有什么不合理的地方请大家指出来,然后调整

1.效果展示

vue实现简单图片上传功能_第1张图片

2.html相关的代码展示

               
         
             
  •                            
                                                                   
                       
                                                                   
                     
  •                  
  •                                        
                                                                   
                       
                                                                   
                     
  •                  
  •                                        
                                                                   
                       
                                                                   
                     
  •                
               

提示:最多添加3张图片,格式为jpg或png

           

店铺照片不能为空

   

3.css样式代码

.form-list {
    width: 100%;
    color: #666;
    font-size: 16px;
    margin: 0 0 20px 0;
}
.add-picture {
    overflow: hidden;
}
 
.add-picture ul li {
    float: left;
    margin: 0 20px 10px 0;
}
 
.add-picture .hasPic,
.add-picture .selPic {
    overflow: hidden;
    width: 86px;
    height: 86px;
    border-radius: 4px;
}
 
.add-picture .hasPic {
    position: relative;
}
 
.add-picture .hasPic img {
    display: block;
    width: 100%;
    height: 100%;
}
 
.add-picture .hasPic img.closepic {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 25px;
    height: 25px;
}
 
.add-picture .selPic .picadd {
    display: block;
    width: 100%;
    height: 100%;
    background: url("../../assets/images/picadd.png");
    background-size: 100% 100%;
}
 
.add-picture .selPic input {
    display: none;
}
 
.add-picture .prompt {
    clear: both;
    margin: 0;
    font-size: 14px;
    color: #ff0000;
}

4、js相关代码

export default {
   data() {
        return {
           //  上传图片标识
           img_1: false,
           img_2: false,
           img_3: false,
           imgdata: {
                seledPic_1: "",
                seledPic_2: "",
                seledPic_3: ""
                },
           img_li1: true,
           img_li2: false,
           img_li3: false,
        }
    },
 methods: {
      // 判断图片上传类型
      produceImg(type, url) {
        let that = this;
        if (type == "seledPic_1") {
          that.img_1 = true;
          that.img_li2 = true;
          that.$set(that.imgdata, "seledPic_1", url);
        } else if (type == "seledPic_2") {
          that.img_2 = true;
          that.img_li3 = true;
          that.$set(that.imgdata, "seledPic_2", url);
        } else if (type == "seledPic_3") {
          that.img_3 = true;
          that.$set(that.imgdata, "seledPic_3", url);
        }
      },
      // 点击关闭按钮图片隐藏
      pichide(type) {
        let that = this;
        if (type == "seledPic_1") {
          if (that.imgdata.seledPic_1 != "") {
            that.img_1 = false;
            that.img_li2 = false;
          }
          if (that.imgdata.seledPic_2 != "") {
            that.img_1 = false;
            that.img_li2 = true;
          }
          if (that.imgdata.seledPic_3 != "") {
            that.img_1 = false;
            that.img_li2 = true;
            that.img_li3 = true;
          }
        } else if (type == "seledPic_2") {
          if (that.imgdata.seledPic_1 != "") {
            that.img_2 = false;
          }
          if (that.imgdata.seledPic_2 != "") {
            that.img_2 = false;
            that.img_li3 = false;
          }
          if (that.imgdata.seledPic_3 != "") {
            that.img_2 = false;
            that.img_li3 = true;
          }
        } else if (type == "seledPic_3") {
          that.img_3 = false;
        }
      },
      //start 上传图片
      onUpload(e, type) {
        let file = e.target.files[0];
        let filesize = file.size;
        let filename = file.name;
        if (filesize > 10485760) {
          alert("图片太大,无法上传");
        } else {
          let reader = new FileReader();
          // 将图片转为base64位
          reader.readAsDataURL(file);
          reader.onload = function(k) {
            // 读取到的图片base64 数据编码
            var imgcode = k.target.result;
            let data = {
              image: imgcode
            };
            axios({              
              url: "http://………………………………",//url地址
              method: "POST",
              data: qs.stringify(data)
            })
              .then(res => {
                let resdata = res.data;
                if (resdata.code == 200) {
                  let url = resdata.info;
                  this.produceImg(type, url);
                } else {
                  alert(resdata.msg);
                }
              })
              .catch(err => {
                console.log(err);
              });
          }.bind(this);
        }
      },
      //end结束图片
   }
} 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(vue实现简单图片上传功能)