学习记录卡片统计信息按时间、次数、正确率顺序展示

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-07-21 22:18:52 +08:00
parent ad0ff1ca7a
commit 7728a22048
@@ -94,7 +94,7 @@ final class WordCardCell: UITableViewCell {
func configure(with word: Word, count: Int, accuracy: Int, time: String) {
configure(with: word)
countLabel.text = "\(count)次 · \(accuracy)% · \(time)"
countLabel.text = "\(time) · \(count)次 · \(accuracy)%"
countLabel.isHidden = false
}