更新
This commit is contained in:
parent
3ac96219c6
commit
becfca1563
@ -83,12 +83,12 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="封面图" align="center" prop="image" width="100">
|
||||
<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>
|
||||
</el-table-column>
|
||||
<el-table-column label="商品图片" align="center" prop="images" width="100">
|
||||
<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>
|
||||
</el-table-column>
|
||||
<el-table-column label="特价/正常" align="center" prop="isSpecial">
|
||||
@ -293,6 +293,7 @@
|
||||
resource: '',
|
||||
desc: ''
|
||||
},
|
||||
baseImageUrl:'https://www.nuoyunr.com/minio',
|
||||
formLabelWidth: '120px',
|
||||
sxjarr:[
|
||||
{
|
||||
@ -435,7 +436,7 @@
|
||||
this.loading = false;
|
||||
});
|
||||
listMallPartners(this.hzsarr).then(response => {
|
||||
this.mallPartnersList = response.rows;
|
||||
this.mallPartnersList = response.data.records;
|
||||
console.log('查询合作商管理列表 ',this.mallPartnersList)
|
||||
});
|
||||
listCategory(this.flarr).then(response => {
|
||||
|
Loading…
Reference in New Issue
Block a user