列表展示图片效果,直接把url的属性赋值给:src就可以了。
<el-table-column prop="banner_image" label="轮播图">
<template slot-scope="scope">
<img :src="scope.row.banner_image" alt="轮播图" width="120px" height="60px">
</template>
</el-table-column>
