This commit is contained in:
许允枞 2024-11-20 17:59:45 +08:00
parent 3ac96219c6
commit becfca1563

View File

@ -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="scope.row.image" :width="50" :height="50"/> <image-preview :src="baseImageUrl + 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="scope.row.images" :width="50" :height="50"/> <image-preview :src="baseImageUrl + 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">
@ -293,6 +293,7 @@
resource: '', resource: '',
desc: '' desc: ''
}, },
baseImageUrl:'https://www.nuoyunr.com/minio',
formLabelWidth: '120px', formLabelWidth: '120px',
sxjarr:[ sxjarr:[
{ {
@ -435,7 +436,7 @@
this.loading = false; this.loading = false;
}); });
listMallPartners(this.hzsarr).then(response => { listMallPartners(this.hzsarr).then(response => {
this.mallPartnersList = response.rows; this.mallPartnersList = response.data.records;
console.log('查询合作商管理列表 ',this.mallPartnersList) console.log('查询合作商管理列表 ',this.mallPartnersList)
}); });
listCategory(this.flarr).then(response => { listCategory(this.flarr).then(response => {