|
@@ -227,8 +227,8 @@ func GetLzProductDetail() (err error) {
|
|
|
}
|
|
|
}()
|
|
|
|
|
|
- startDate := "2020-09-01"//time.Now().AddDate(0, 0, 0).Format(utils.FormatDate)
|
|
|
- endDate := "2020-09-04"//time.Now().AddDate(0, 0, 0).Format(utils.FormatDate)
|
|
|
+ startDate := "2020-09-01" //time.Now().AddDate(0, 0, 0).Format(utils.FormatDate)
|
|
|
+ endDate := "2020-09-04" //time.Now().AddDate(0, 0, 0).Format(utils.FormatDate)
|
|
|
time.Sleep(5 * time.Second)
|
|
|
pageSize := 30
|
|
|
|
|
@@ -615,8 +615,19 @@ func LzExportExcel() {
|
|
|
}
|
|
|
}
|
|
|
err = xlsxFile.Save(downLoadnFilePath)
|
|
|
- fmt.Print("downLoadnFilePath:",downLoadnFilePath)
|
|
|
+ fmt.Print("downLoadnFilePath:", downLoadnFilePath)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+func GetLzProductPriceProduct() (err error) {
|
|
|
+ getUrl := `https://openapi.oilchem.net/price/getProduct?password=HZMD2020&type=guoji&username=hzmd`
|
|
|
+ //username := "hzmd"
|
|
|
+ //password := "HZMD2020"
|
|
|
+ body, err := http.Get(getUrl)
|
|
|
+ fmt.Print("err:", err)
|
|
|
+ fmt.Print("body")
|
|
|
+ fmt.Print(string(body))
|
|
|
+ return
|
|
|
+}
|