自学内容网 自学内容网

vue3中将在线url地址转为图片显示方法教程

vue3中将在线url地址转为图片显示方法教程

转化后:

原来:

代码:


      <el-table-column label="制单人" align="center">
        <template #default="scope">
          <img
            v-if="scope.row.maker"
            :src="scope.row.maker"
            alt="制单人签名"
            style="width: 50px; height: 50px"
          />
          <span v-else>无签名</span>
        </template>
      </el-table-column>
      <el-table-column label="领料人" align="center">
        <template #default="scope">
          <img
            v-if="scope.row.receiver"
            :src="scope.row.receiver"
            alt="领料人签名"
            style="width: 50px; height: 50px"
          />
          <span v-else>无签名</span>
        </template>
      </el-table-column>


原文地址:https://blog.csdn.net/weixin_66071584/article/details/143798344

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!