增加push功能。

This commit is contained in:
oscarz
2024-09-10 16:39:30 +08:00
parent 5b3b2f4a5f
commit 434df13a41
6 changed files with 232 additions and 7 deletions

View File

@ -83,7 +83,16 @@ class GlobalEnvironment: ObservableObject {
logger.info("baseHost: \(self.baseHost)")
// SandBox
}
// 使
@Published var pushSettings: PushInfo = PushInfo()
struct PushInfo{
var gotoTab: Int = 0
var showPage: Bool = false
var page: String = ""
var showMode: String = ""
var openURL: String = ""
var appAtFront : Bool = false
}
}
//