chunping hace 3 años
padre
commit
1405c0ce96
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 2 2
      pages/core/index.vue
  2. 1 1
      pages/coreRange/coreRange.vue

+ 2 - 2
pages/core/index.vue

@@ -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

+ 1 - 1
pages/coreRange/coreRange.vue

@@ -200,7 +200,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
 							this.list = this.list.concat(res.rows)