...
|
...
|
@@ -200,11 +200,13 @@ function onReachBottom(type) { |
|
|
|
|
|
function fellow(id, lottery) {
|
|
|
let info = prizeListStore.get(id);
|
|
|
|
|
|
console.log(info);
|
|
|
let lotteryInfo;
|
|
|
|
|
|
if (info && info.lottery_info) {
|
|
|
if (info && info.lotteryInfo) {
|
|
|
try {
|
|
|
lotteryInfo = $.parseJSON(info.lottery_info);
|
|
|
lotteryInfo = $.parseJSON(info.lotteryInfo);
|
|
|
} catch(e) {} // eslint-disable-line
|
|
|
}
|
|
|
|
...
|
...
|
|