소스 검색

更新

master
huangjiajun 11 달 전
부모
커밋
82c2bfd97c
2개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -1
      md/zhimeng.go
  2. +5
    -1
      zhimeng/pdd.go

+ 2
- 1
md/zhimeng.go 파일 보기

@@ -32,6 +32,7 @@ type JDZhimengItem struct {
}

type PDDZhimengItem struct {
InOrderCount string `json:"inOrderCount"`
AvgDesc interface{} `json:"avg_desc"`
AvgLgst interface{} `json:"avg_lgst"`
AvgServ interface{} `json:"avg_serv"`
@@ -53,7 +54,7 @@ type PDDZhimengItem struct {
GoodsImg string `json:"goods_img"`
GoodsSign string `json:"goods_sign"`
GoodsMinImg string `json:"goods_min_img"`
GoodsSales interface{} `json:"goods_sales"`
GoodsSales string `json:"goods_sales"`
GoodsTitle string `json:"goods_title"`
LgstPct interface{} `json:"lgst_pct"`
MallID int `json:"mall_id"`


+ 5
- 1
zhimeng/pdd.go 파일 보기

@@ -19,11 +19,15 @@ func PddGoods(param map[string]interface{}) []map[string]string {
return goods
}
for _, v := range tmp.Data {
sales := v.GoodsSales
if sales == "" {
sales = v.InOrderCount
}
var tmp = map[string]string{
"gid": v.GoodsSign,
"title": v.GoodsTitle,
"img": v.GoodsImg,
"sales": zhios_third_party_utils.AnyToString(v.GoodsSales),
"sales": sales,
"price": zhios_third_party_utils.Float64ToStr(v.MinGroupPrice - float64(v.CouponPrice)),
"cost_price": zhios_third_party_utils.Float64ToStr(v.MinNormalPrice),
"coupon": zhios_third_party_utils.IntToStr(v.CouponPrice),


불러오는 중...
취소
저장