|
|
@ -86,7 +86,7 @@ namespace BBWY.Server.Business |
|
|
|
orderType = "desc", |
|
|
|
pageSize = searchProductRequest.PageSize, |
|
|
|
pageNo = searchProductRequest.PageIndex, |
|
|
|
field = "created,logo" |
|
|
|
field = "created,logo,brandName" |
|
|
|
}; |
|
|
|
if (!string.IsNullOrEmpty(searchProductRequest.Spu)) |
|
|
|
req_productList.wareId = searchProductRequest.Spu; |
|
|
@ -111,7 +111,8 @@ namespace BBWY.Server.Business |
|
|
|
ProductItemNum = p.Value<string>("itemNum"), |
|
|
|
State = p.Value<int>("wareStatus"), |
|
|
|
CreateTime = p.Value<long>("created").StampToDateTime(), |
|
|
|
Logo = $"https://img13.360buyimg.com/n9/s100x100_{p.Value<string>("logo")}" |
|
|
|
Logo = $"https://img13.360buyimg.com/n9/s100x100_{p.Value<string>("logo")}", |
|
|
|
BrandName = p.Value<string>("brandName") |
|
|
|
}).ToList() |
|
|
|
}; |
|
|
|
} |
|
|
|