Element upload组件上传图片与回显图片

场景:新增商品时需要添加商品主图,新增成功之后可编辑

上传图片:

复制代码


            
只能上传jpg/png文件,50X50px

复制代码

复制代码

data(){
  return{
    uploadDisabled: false,

        logoId: "1", //专区logo id

       dialogVisible: false,

      fileList: [],
       ruleForm: {
        dialogImageUrl: "1", //专区logo 上传到后台之后,后台会返回一个id,只需要给后台传id,但是点击编辑的时候后台返回的是http地址
      },
   }  
}

复制代码

复制代码

 

//删除图片

handleRemove(file, fileList) {

console.log(file);

this.uploadDisabled = false;

},

//上传中
    handlePictureCardPreview(file) {
      this.dialogImageUrl = file.url;
      console.log(this.dialogImageUrl);
      this.dialogVisible = true;
      this.uploadDisabled = true;
    },
    //上传成功
    handleUploadSuccess(file) {
      this.ruleForm.dialogImageUrl = file.result; //专区logoId
      this.uploadDisabled = true;
    },

复制代码

上传图片就完成了

 

以下是编辑图片;

复制代码

在点击编辑的时候 ,获取url地址
需要把url 添加到 fileList 里面  
let urlStr = response.data.result.url.split(","); //logo地址
          urlStr.forEach(item => {
            let obj = new Object();
            obj.url = item;
            this.fileList.push(obj);
          });

你可能感兴趣的:(vue)