This commit is contained in:
iqudoo
2026-06-12 21:44:05 +08:00
parent e71452ae78
commit 66605b51db
2 changed files with 14 additions and 20 deletions

View File

@@ -65,16 +65,6 @@ export const DataRangeFields: React.FC<DataRangeFieldsProps> = ({
/>
</div>
)}
<p className={isMobile ? 'text-xs text-slate-500' : 'text-[10px] text-[#777]'}>
{rangeStats.selectedCount}
{rangeStats.selectedCount < rows.length && ` / 共 ${rows.length}`}
{isMobile && rangeStats.selectedCount > 0 && (
<span>
{' '}
· {rangeStats.totalPages} PDF
</span>
)}
</p>
</div>
);
};