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