rdluck 4 年之前
父節點
當前提交
31391ad198
共有 2 個文件被更改,包括 15 次插入4 次删除
  1. 14 3
      services/data_source_longzhong.go
  2. 1 1
      services/task.go

+ 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)
 	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
+}

+ 1 - 1
services/task.go

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