|
@@ -134,6 +134,17 @@
|
|
|
<span v-else-if="row.status=='3'" style="color:#E6A23C">未激活</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="image" label="图片">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <a v-if="row.image" :href="row.image" target="_blank">
|
|
|
+ <el-image
|
|
|
+ style="width:50px;height:50px"
|
|
|
+ :src="row.image"
|
|
|
+ :key="row.id"
|
|
|
+ ></el-image>
|
|
|
+ </a>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
prop="createTime"
|
|
|
label="创建时间"
|