Explorar el Código

拼多多联盟

master
huangjiajun hace 7 meses
padre
commit
9f10df5e99
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      pdd_union/goods.go

+ 2
- 2
pdd_union/goods.go Ver fichero

@@ -36,7 +36,7 @@ func GetRecommendGoods(keyArr map[string]string, param map[string]interface{}) [
goodsSale = strings.ReplaceAll(goodsSale, "万+", "")
goodsSale = zhios_third_party_utils.IntToStr(zhios_third_party_utils.StrToInt(goodsSale) * 10000)
}
if strings.Contains(zhios_third_party_utils.AnyToString(tmp["goods_sales"]), "万") {
if strings.Contains(goodsSale, "万") {
goodsSale = strings.ReplaceAll(goodsSale, "万", "")
goodsSale = zhios_third_party_utils.IntToStr(zhios_third_party_utils.StrToInt(goodsSale) * 10000)
}
@@ -79,7 +79,7 @@ func GetSearchGoods(keyArr map[string]string, param map[string]interface{}) []ma
goodsSale = strings.ReplaceAll(goodsSale, "万+", "")
goodsSale = zhios_third_party_utils.IntToStr(zhios_third_party_utils.StrToInt(goodsSale) * 10000)
}
if strings.Contains(zhios_third_party_utils.AnyToString(tmp["goods_sales"]), "万") {
if strings.Contains(goodsSale, "万") {
goodsSale = strings.ReplaceAll(goodsSale, "万", "")
goodsSale = zhios_third_party_utils.IntToStr(zhios_third_party_utils.StrToInt(goodsSale) * 10000)
}


Cargando…
Cancelar
Guardar