diff --git a/platformapi/ebaiapi/store_page.go b/platformapi/ebaiapi/store_page.go index bd29b938..c8349d90 100644 --- a/platformapi/ebaiapi/store_page.go +++ b/platformapi/ebaiapi/store_page.go @@ -197,7 +197,7 @@ type PageListInnerShopInfo struct { ShopLabels string `json:"shop_labels"` ShopName string `json:"shop_name"` TakeoutCost float64 `json:"takeout_cost"` - TakeoutPrice int `json:"takeout_price"` + TakeoutPrice float64 `json:"takeout_price"` Type interface{} `json:"type"` WelfareInfo []struct { IconColor struct { @@ -296,11 +296,11 @@ type PageShopInfo struct { ShopScore float64 `json:"shop_score"` ShopSourceFrom int `json:"shop_source_from"` SkuCount int `json:"sku_count"` - TakeoutCost int `json:"takeout_cost"` - TakeoutInvoice int `json:"takeout_invoice"` + TakeoutCost float64 `json:"takeout_cost"` + TakeoutInvoice float64 `json:"takeout_invoice"` TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"` TakeoutOpenTime string `json:"takeout_open_time"` - TakeoutPrice int `json:"takeout_price"` + TakeoutPrice float64 `json:"takeout_price"` } func (a *API) AccessStorePage2(subURL string, params map[string]interface{}, isPost bool, cookies map[string]string) (retVal map[string]interface{}, err error) {