价值比较器
20 分硬币“约瑟芬·贝克” • 选择要估价的品相
20c
选定估价
选择品相
拥有数量
总潜在价值
€0.00
*估价基于当前钱币市场数据。实际价值取决于供需关系。
${coin.details}
${coin.priceDisplay}
估价
`;
container.appendChild(el);
});
}
/**
* 处理行选择
*/function selectCoin(id) {
selectedCoinId = id;
/ 可视化更新行
const rows = container.children;
Array.from(rows).forEach(row => {
const rowId = parseInt(row.getAttribute(‘data-id’));
if (rowId === id) {
row.classList.add(‘ring-2’, ‘ring-offset-2’, ‘ring-blue-500’, ‘bg-blue-50’);
row.classList.remove(‘bg-white’);
} else {
row.classList.remove(‘ring-2’, ‘ring-offset-2’, ‘ring-blue-500’, ‘bg-blue-50’);
row.classList.add(‘bg-white’);