|
@@ -54,6 +54,11 @@ struct Login: Encodable {
|
|
let cook: String
|
|
let cook: String
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+struct UserInfo: Encodable {
|
|
|
|
+ var name: String
|
|
|
|
+ var o: String
|
|
|
|
+}
|
|
|
|
+
|
|
class LoginHandler {
|
|
class LoginHandler {
|
|
static let sharedInstance = LoginHandler()
|
|
static let sharedInstance = LoginHandler()
|
|
|
|
|
|
@@ -88,7 +93,6 @@ func doLogin(user: String, password: String, action: @escaping (_: Int) -> Void)
|
|
AF.request("https://debug.sdsz.icu/andlogin", method: .post, parameters: login, encoder: JSONParameterEncoder.default, headers: nil).responseString { res in
|
|
AF.request("https://debug.sdsz.icu/andlogin", method: .post, parameters: login, encoder: JSONParameterEncoder.default, headers: nil).responseString { res in
|
|
print("\(res)")
|
|
print("\(res)")
|
|
if res.value == "success" {
|
|
if res.value == "success" {
|
|
- print("SUCCESS!\(LoginHandler().getCookie(name: "CASTGC"))")
|
|
|
|
action(1)
|
|
action(1)
|
|
} else {
|
|
} else {
|
|
action(0)
|
|
action(0)
|
|
@@ -97,13 +101,19 @@ func doLogin(user: String, password: String, action: @escaping (_: Int) -> Void)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func getUserInfo(userInfo: inout UserInfo) {
|
|
|
|
+ userInfo.name = "向量"
|
|
|
|
+}
|
|
|
|
+
|
|
struct loginView: View {
|
|
struct loginView: View {
|
|
@State var username: String = ""
|
|
@State var username: String = ""
|
|
@State var password: String = ""
|
|
@State var password: String = ""
|
|
@State var btnText: String = "登录"
|
|
@State var btnText: String = "登录"
|
|
@State var btnColor: Color = .blue
|
|
@State var btnColor: Color = .blue
|
|
|
|
+ @State var inProgress: Bool = false
|
|
@FocusState private var isFocused: Bool
|
|
@FocusState private var isFocused: Bool
|
|
@Binding var isLoggedIn: Int
|
|
@Binding var isLoggedIn: Int
|
|
|
|
+ @Binding var userInfo: UserInfo
|
|
var body: some View {
|
|
var body: some View {
|
|
VStack {
|
|
VStack {
|
|
Form {
|
|
Form {
|
|
@@ -124,27 +134,30 @@ struct loginView: View {
|
|
}.onTapGesture {
|
|
}.onTapGesture {
|
|
isFocused = false
|
|
isFocused = false
|
|
}
|
|
}
|
|
- Section {
|
|
|
|
- HStack {
|
|
|
|
- Spacer()
|
|
|
|
- Button(action: {
|
|
|
|
- doLogin(user: username, password: password) { (ret: Int) in
|
|
|
|
- isLoggedIn = ret
|
|
|
|
- if ret == 0 {
|
|
|
|
- btnText = "登录失败"
|
|
|
|
- btnColor = .red
|
|
|
|
- }
|
|
|
|
|
|
+ HStack {
|
|
|
|
+ Spacer()
|
|
|
|
+ Button(action: {
|
|
|
|
+ inProgress = true
|
|
|
|
+ doLogin(user: username, password: password) { (ret: Int) in
|
|
|
|
+ isLoggedIn = ret
|
|
|
|
+ inProgress = false
|
|
|
|
+ if ret == 0 {
|
|
|
|
+ btnText = "登录失败"
|
|
|
|
+ btnColor = .red
|
|
|
|
+ } else {
|
|
|
|
+ getUserInfo(userInfo: &userInfo)
|
|
}
|
|
}
|
|
- }) {
|
|
|
|
- VStack {
|
|
|
|
- Text(btnText)
|
|
|
|
|
|
+ }
|
|
|
|
+ }) {
|
|
|
|
+ HStack {
|
|
|
|
+ Text(btnText)
|
|
|
|
+ if inProgress {
|
|
|
|
+ ProgressView()
|
|
}
|
|
}
|
|
- }.font(.title3).foregroundColor(btnColor)
|
|
|
|
- Spacer()
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ }.foregroundColor(btnColor).buttonStyle(.bordered)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- Spacer()
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -154,13 +167,21 @@ struct accountView: View {
|
|
@State var password: String = ""
|
|
@State var password: String = ""
|
|
@FocusState private var isFocused: Bool
|
|
@FocusState private var isFocused: Bool
|
|
@Binding var isLoggedIn: Int
|
|
@Binding var isLoggedIn: Int
|
|
|
|
+ @Binding var userInfo: UserInfo
|
|
var body: some View {
|
|
var body: some View {
|
|
VStack {
|
|
VStack {
|
|
Form {
|
|
Form {
|
|
- Section(header: Text("hi")) {
|
|
|
|
- Text("一些")
|
|
|
|
- Text("一些")
|
|
|
|
- Text("东西")
|
|
|
|
|
|
+ Section(header: Text("基本信息")) {
|
|
|
|
+ HStack {
|
|
|
|
+ Text("姓名")
|
|
|
|
+ Spacer()
|
|
|
|
+ Text(userInfo.name)
|
|
|
|
+ }
|
|
|
|
+ HStack {
|
|
|
|
+ Text("所属班级")
|
|
|
|
+ Spacer()
|
|
|
|
+ Text(userInfo.name)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
Section {
|
|
Section {
|
|
Button(action: {
|
|
Button(action: {
|
|
@@ -183,7 +204,8 @@ struct accountView: View {
|
|
|
|
|
|
struct accountView_Previews: PreviewProvider {
|
|
struct accountView_Previews: PreviewProvider {
|
|
@State static var isLoggedIn = 0
|
|
@State static var isLoggedIn = 0
|
|
|
|
+ @State static var userInfo: UserInfo = .init(name: "", o: "")
|
|
static var previews: some View {
|
|
static var previews: some View {
|
|
- loginView(isLoggedIn: $isLoggedIn)
|
|
|
|
|
|
+ loginView(isLoggedIn: $isLoggedIn, userInfo: $userInfo)
|
|
}
|
|
}
|
|
}
|
|
}
|