diff --git a/VERSION b/VERSION index da5c718..19838b2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.91 \ No newline at end of file +1.2.92 diff --git a/config/VERSION b/config/VERSION index 55f1222..19838b2 100644 --- a/config/VERSION +++ b/config/VERSION @@ -1 +1 @@ -1.2.89 +1.2.92 diff --git a/frontend/src/pages/News.jsx b/frontend/src/pages/News.jsx index cf73ace..801782a 100644 --- a/frontend/src/pages/News.jsx +++ b/frontend/src/pages/News.jsx @@ -81,9 +81,12 @@ export default function News() { // 构建URL参数 let url = `${API_BASE}/api/information/list?info_type=${type}` - // 如果是成交行情tab,获取当天所有数据(不分页) - if (activeTab === 'deal' && dealDate) { - url += `&deal_date=${dealDate}&page_size=500` + // 成交行情tab,获取500条数据 + if (activeTab === 'deal') { + url += `&page_size=500` + if (dealDate) { + url += `&deal_date=${dealDate}` + } } else { url += `&page=${currentPage}&page_size=50` }