rdluck 4 жил өмнө
parent
commit
31391ad198

+ 14 - 3
services/data_source_longzhong.go

@@ -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)
 	time.Sleep(5 * time.Second)
 	pageSize := 30
 	pageSize := 30
 
 
@@ -615,8 +615,19 @@ func LzExportExcel() {
 		}
 		}
 	}
 	}
 	err = xlsxFile.Save(downLoadnFilePath)
 	err = xlsxFile.Save(downLoadnFilePath)
-	fmt.Print("downLoadnFilePath:",downLoadnFilePath)
+	fmt.Print("downLoadnFilePath:", downLoadnFilePath)
 	if err != nil {
 	if err != nil {
 		return
 		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
+}

+ 1 - 1
services/task.go

@@ -32,7 +32,7 @@ func Taskabc() {
 
 
 func Task() {
 func Task() {
 	fmt.Print("start")
 	fmt.Print("start")
-	GetLzProductDetail()
+	GetLzProductPriceProduct()
 	fmt.Print("end")
 	fmt.Print("end")
 }
 }