This commit is contained in:
许允枞 2024-11-21 10:09:38 +08:00
parent becfca1563
commit e1b448ddd2
2 changed files with 3 additions and 2 deletions

View File

@ -258,6 +258,7 @@
},
shopconfigList: [],
shopConfig: {},
baseImageUrl: process.env.VUE_APP_FILE_API,
//
loading: true,
//

View File

@ -83,12 +83,12 @@
</el-table-column>
<el-table-column label="封面图" align="center" prop="image" width="100">
<template slot-scope="scope">
<image-preview :src="baseImageUrl + scope.row.image" :width="50" :height="50"/>
<image-preview :src="scope.row.image" :width="50" :height="50"/>
</template>
</el-table-column>
<el-table-column label="商品图片" align="center" prop="images" width="100">
<template slot-scope="scope">
<image-preview :src="baseImageUrl + scope.row.images" :width="50" :height="50"/>
<image-preview :src="scope.row.images" :width="50" :height="50"/>
</template>
</el-table-column>
<el-table-column label="特价/正常" align="center" prop="isSpecial">