feat: 定投标记展示

This commit is contained in:
hzm
2026-03-04 08:30:30 +08:00
parent be4fc5eabe
commit c9038757dd
5 changed files with 30 additions and 1 deletions

View File

@@ -348,6 +348,7 @@ export default function PcFundTable({
const original = info.row.original || {};
const code = original.code;
const isUpdated = original.isUpdated;
const hasDca = original.hasDca;
const isFavorites = favorites?.has?.(code);
const isGroupTab = currentTab && currentTab !== 'all' && currentTab !== 'fav';
const rowContext = useContext(SortableRowContext);
@@ -399,6 +400,7 @@ export default function PcFundTable({
</span>
{code ? <span className="muted code-text">
#{code}
{hasDca && <span className="dca-indicator"></span>}
{isUpdated && <span className="updated-indicator"></span>}
</span> : null}
</div>