Merge remote-tracking branch 'origin/main' into feature/0710_下载中心_rxd

This commit is contained in:
rd
2025-07-18 18:14:14 +08:00
9 changed files with 43 additions and 19 deletions

View File

@ -92,7 +92,8 @@ const init = () => {
selectedRowKeys.value = [];
accountTableRef.value?.resetTable();
const data_time = [dayjs().format('YYYY-MM-DD'), dayjs().format('YYYY-MM-DD')];
const yesterday = dayjs().subtract(1, 'day').format('YYYY-MM-DD');
const data_time = [yesterday, yesterday];
query.value.data_time = data_time;
getData();
@ -137,9 +138,11 @@ const handleSelectionChange = (selectedRows) => {
};
const handleTabClick = (key) => {
dataSource.value = [];
selectedRowKeys.value = [];
pageInfo.value = cloneDeep(INITIAL_PAGE_INFO);
activeTab.value = key;
getData();
};
const handleExport = () => {