更新
This commit is contained in:
parent
becfca1563
commit
e1b448ddd2
@ -258,6 +258,7 @@
|
|||||||
},
|
},
|
||||||
shopconfigList: [],
|
shopconfigList: [],
|
||||||
shopConfig: {},
|
shopConfig: {},
|
||||||
|
baseImageUrl: process.env.VUE_APP_FILE_API,
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 选中数组
|
// 选中数组
|
||||||
|
@ -83,12 +83,12 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="封面图" align="center" prop="image" width="100">
|
<el-table-column label="封面图" align="center" prop="image" width="100">
|
||||||
<template slot-scope="scope">
|
<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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="商品图片" align="center" prop="images" width="100">
|
<el-table-column label="商品图片" align="center" prop="images" width="100">
|
||||||
<template slot-scope="scope">
|
<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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="特价/正常" align="center" prop="isSpecial">
|
<el-table-column label="特价/正常" align="center" prop="isSpecial">
|
||||||
|
Loading…
Reference in New Issue
Block a user