Authored by weiqingting

Merge branch 'develop' of http://git.dev.yoho.cn/platform/yohobuy-portal-fe into develop

... ... @@ -46,6 +46,13 @@ var GoodsTypeEnum = {
}
var YNEnum = {
enum:{
"Y":"是",
"N":"否"
}
}
/*下拉选择*/
new common.dropDown({el:"#shopId",ajax:"queryShop"});
new common.dropDown({el:"#brandId",ajax:"queryBrand"});
... ... @@ -91,9 +98,12 @@ var g = new common.grid({
}},
{display:"商品信息",render:function(item){
var html=[];
var catgory = item.maxSortName;
html.push("<p>名称:"+item.productName+"</p>");
html.push("<p>品牌:"+item.productName+"</p>");
html.push("<p>品类:"+item.productName+"</p>");
html.push("<p>品牌:"+item.brandName+"</p>");
html.push("<p>品类:"+catgory+"</p>");
return html.join('');
}},
... ... @@ -105,11 +115,10 @@ var g = new common.grid({
//待审核和驳回列表中只显示吊牌价和销售价,通过的列表中显示四种
if (item.isAuditing === 200) {
html.push("<p>是否VIP:"+item.productName+"</p>");
html.push("<p>yoho币:"+item.productName+"</p>");
html.push("<p>是否VIP:"+YNEnum.enum(item.isVip)+"</p>");
html.push("<p>yoho币:"+item.yohoCoin+"</p>");
}
return html.join('');
}},
... ...