- 問題描述:上傳成功后誓篱,圖片先向右皮壁,再擺回位置撩荣。出現(xiàn)占位閃現(xiàn)铣揉。
圖片上傳成功后回調(diào)事件 on-success='handleAvatarSuccess'
/**
* @param response
* @param file file是本次上傳成功的文件信息
* @param fileList fileList是已上傳成功的文件列表匯總
*/
handleAvatarSuccess(response, file, fileList) {
//原(圖片閃現(xiàn))
this.imageList.push({
url: response.data
})
//改動后(解決閃現(xiàn)問題)
//1
this.imageList.push(file)
//2
this.imageList = fileList
}
- 去除upload組件過渡效果 css
.el-upload-list__item {
transition: none !important;
}
參考文章:https://blog.csdn.net/feifantiantang/article/details/113523171?ivk_sa=1024320