瀏覽代碼

修改文件合并

longyu 2 年之前
父節點
當前提交
ff7c30a77d
共有 1 個文件被更改,包括 6 次插入3 次删除
  1. 6 3
      services/index_merge.go

+ 6 - 3
services/index_merge.go

@@ -94,7 +94,8 @@ func IndexYearMerge() {
 		templateFile.Close()
 	}
 	//刷新数据
-	MysteelChemicalRefresh(yearIndexFilePath)
+	//MysteelChemicalRefresh(yearIndexFilePath)
+	AddIndexRefreshToLpush(yearIndexFilePath)
 }
 
 //季度
@@ -153,7 +154,8 @@ func IndexSeasonMerge() {
 		templateFile.Close()
 	}
 	//刷新数据
-	MysteelChemicalRefresh(seasonIndexFilePath)
+	//MysteelChemicalRefresh(seasonIndexFilePath)
+	AddIndexRefreshToLpush(seasonIndexFilePath)
 }
 
 //月度
@@ -654,7 +656,8 @@ func indexMerge(frequency, filePre string, pageSize int) (err error) {
 		maxFileIndex += 1
 		time.Sleep(1 * time.Second)
 		//刷新数据
-		MysteelChemicalRefresh(mergeIndexFilePath)
+		//MysteelChemicalRefresh(mergeIndexFilePath)
+		AddIndexRefreshToLpush(mergeIndexFilePath)
 	}
 	return
 }