|
@@ -49,7 +49,8 @@
|
|
|
<el-table-column prop="productId" label="商品id" show-overflow-tooltip />
|
|
|
<el-table-column label="商品主图" width="150" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <img height="80" width="80" :src="scope.row.productImage" alt srcset>
|
|
|
+ <!-- 修复图片不能正常显示的问题 -->
|
|
|
+ <img height="80" width="80" :src="scope.row.productImage.replace(/http:\/\//, 'https://')" alt srcset>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="productName" label="商品名称" width="220" />
|