// 共用的数据模型 struct AlbumItem: Codable, Identifiable { let album_id: String let title: String var id: String { album_id } }