Showing
1 changed file
with
4 additions
and
1 deletions
@@ -108,7 +108,7 @@ Page(Object.assign({ | @@ -108,7 +108,7 @@ Page(Object.assign({ | ||
108 | animation: null, | 108 | animation: null, |
109 | shareFlag: false, | 109 | shareFlag: false, |
110 | notice: {}, | 110 | notice: {}, |
111 | - lottery:{} | 111 | + lottery: {} |
112 | }, | 112 | }, |
113 | 113 | ||
114 | /** | 114 | /** |
@@ -255,6 +255,9 @@ Page(Object.assign({ | @@ -255,6 +255,9 @@ Page(Object.assign({ | ||
255 | this.service.fetchMyPrizeList({uid: this.data.uid, actPrizeId: this.data.actPrizeId}).then(res => { | 255 | this.service.fetchMyPrizeList({uid: this.data.uid, actPrizeId: this.data.actPrizeId}).then(res => { |
256 | let len = res.data.length > 3 ? 3 : res.data.length; | 256 | let len = res.data.length > 3 ? 3 : res.data.length; |
257 | if (len) { | 257 | if (len) { |
258 | + res.data.map((value) => { | ||
259 | + value.user_thumb = formatImageUrl(value.user_thumb, 60, 60); | ||
260 | + }) | ||
258 | this.setData({ | 261 | this.setData({ |
259 | codeList: res.data, | 262 | codeList: res.data, |
260 | }) | 263 | }) |
-
Please register or login to post a comment