|
@@ -328,7 +328,7 @@
|
|
|
}
|
|
|
goodsList.forEach(item => {
|
|
|
item.data.forEach(items => {
|
|
|
- items.picUrl = env.filePublic + items.picUrl.split(',')[0] + '_s'
|
|
|
+ items.picUrl = env.filePublic + items.picUrl.split(',')[0]
|
|
|
})
|
|
|
})
|
|
|
this.exclusiveSingle = goodsList
|
|
@@ -354,7 +354,7 @@
|
|
|
if (res.code == 0) {
|
|
|
res.rows.forEach(item => {
|
|
|
let picUrlArr = item.picUrl.split(',')
|
|
|
- item.picUrl = env.filePublic + picUrlArr[0] + '_s'
|
|
|
+ item.picUrl = env.filePublic + picUrlArr[0]
|
|
|
})
|
|
|
|
|
|
this.total = res.total
|