当前位置:   article > 正文

table表格实现图片头像上传_el-table-column表格图片上传

el-table-column表格图片上传

 效果

html代码

  1. <el-table-column label="头像" width="120">
  2. <div class="demo-fit">
  3. <div class="block">
  4. <el-avatar
  5. shape="square"
  6. :size="50"
  7. :fit="fit"
  8. :src="headerurl"
  9. ></el-avatar>
  10. </div>
  11. </div>
  12. </el-table-column>

data中定义

   headerurl: "", // 头像地址

methods中赋值

跟随接口 赋值

this.headerurl = res.data.list[0].headerurl

 

更多详情请查Element-Ui 官方文档

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/584019
推荐阅读