Authored by dongjunjie

店铺装修bug

... ... @@ -736,7 +736,7 @@ function gridInit(id){
g.__rows=""||jsonClone.resources.newProducts.data;
g.init(g.__rows);
//右侧热销排名前20商品
if(jsonMain.resources.allNewProducts.data.length > 0){
if(jsonMain.resources.allNewProducts.data && jsonMain.resources.allNewProducts.data.length > 0){
$("#"+id+" .top20List").html(common.util.__template2($("#top20Products").html(),jsonMain.resources.allNewProducts));
productTopDataLink(g.__rows);
}else{
... ... @@ -768,7 +768,7 @@ function gridInit(id){
if(curPlatform == "shopWeb-pc"){
g.__rows=""||jsonClone.resources.hotProducts.data;
//右侧热销排名前20商品
if(jsonMain.resources.allHotProducts.data.length > 0){
if(jsonMain.resources.allHotProducts.data && jsonMain.resources.allHotProducts.data.length > 0){
$("#"+id+" .top20List").html(common.util.__template2($("#top20Products").html(),jsonMain.resources.allHotProducts));
productTopDataLink(g.__rows);
}else{
... ... @@ -778,7 +778,7 @@ function gridInit(id){
if(curPlatform == "shopWeb-app"){
g.__rows=""||jsonClone.resources.hotProducts_APP.data;
//右侧热销排名前20商品
if(jsonMain.resources.allHotProducts_APP.data.length > 0){
if(jsonMain.resources.allHotProducts_APP.data && jsonMain.resources.allHotProducts_APP.data.length > 0){
$("#"+id+" .top20List").html(common.util.__template2($("#top20Products").html(),jsonMain.resources.allHotProducts_APP));
productTopDataLink(g.__rows);
}else{
... ...