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>