fix(huahai-spider): 修复爬虫中获取发布时间的选择器错误

This commit is contained in:
huzhengrong 2025-10-29 17:08:05 +08:00
parent 02521c50a2
commit 15a5d1b60a
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class HUAHAI {
$(".callbids-list li").each((index, element) => { $(".callbids-list li").each((index, element) => {
let id = $(element).find("a").attr("href"); let id = $(element).find("a").attr("href");
let name = $(element).find("h6").text(); let name = $(element).find("h6").text();
let publishTime = $(element).find("callbids-time").text(); let publishTime = $(element).find(".callbids-time").text();
let endTime = null; let endTime = null;
let urls = $(element).find("a").attr("href"); let urls = $(element).find("a").attr("href");
if ( if (