v1.2.92 - 成交行情页面显示500条数据

This commit is contained in:
甲辰生产 2026-04-14 08:39:46 +08:00
parent 9fe3f77d45
commit e45899db0c
3 changed files with 8 additions and 5 deletions

View File

@ -1 +1 @@
1.2.91
1.2.92

View File

@ -1 +1 @@
1.2.89
1.2.92

View File

@ -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`
// tab500
if (activeTab === 'deal') {
url += `&page_size=500`
if (dealDate) {
url += `&deal_date=${dealDate}`
}
} else {
url += `&page=${currentPage}&page_size=50`
}