This commit is contained in:
邹宗楠
2025-07-09 15:38:19 +08:00
parent 0f6cf49c48
commit 69a65dab98
12 changed files with 104 additions and 82 deletions

View File

@@ -349,7 +349,9 @@ func (a *API) AuerySkuInfoList(pageNo, pageSize int64, searchAfterSkuId string)
return nil, 0, err
}
skuList := data.(map[string]interface{})["result"]
if skuList == nil {
return nil, 0, nil
}
sku := make([]*JDSkuList, 0, 0)
json.Unmarshal([]byte(skuList.(string)), &sku)