This commit is contained in:
anlicheng 2025-07-30 09:30:46 +08:00
parent f071002cc3
commit a0290cffbe

View File

@ -53,13 +53,13 @@ final class DetailModel {
switch rawValue { switch rawValue {
case "first_row": case "first_row":
self.status = rawValue self.status = rawValue
self.config = DisplayConfig(name: "前排占位", bgColor: .black, fontColor: .white) self.config = DisplayConfig(name: "前排占位", bgColor: .black, fontColor: .white)
case "following": case "following":
self.status = rawValue self.status = rawValue
self.config = DisplayConfig(name: "♡ 追番", bgColor: .black, fontColor: .white) self.config = DisplayConfig(name: "♡ 追番", bgColor: .black, fontColor: .white)
case "catching_up": case "catching_up":
self.status = rawValue self.status = rawValue
self.config = DisplayConfig(name: "补番", bgColor: .black, fontColor: .white) self.config = DisplayConfig(name: "补番", bgColor: .black, fontColor: .white)
case "dropping": case "dropping":
self.status = rawValue self.status = rawValue
self.config = DisplayConfig(name: "弃番", bgColor: .white, fontColor: Color(hex: "#333333")) self.config = DisplayConfig(name: "弃番", bgColor: .white, fontColor: Color(hex: "#333333"))