Authored by 毕凯

增加容错处理

... ... @@ -36,8 +36,12 @@ function getProductInfo(skn, promotionId) {
return;
}
console.log(res);
$chosePanel.html(panelTmpl(res));
chosePanel.show();
if (res.code === 200) {
$chosePanel.html(panelTmpl(res.data));
chosePanel.show();
} else {
tip.show(res.message || '网络错误');
}
}).fail(function() {
tip.show('网络错误');
});
... ...