|
@@ -15,9 +15,11 @@ import {
|
|
|
import Parse from 'parse';
|
|
|
import {AlertController} from "@ionic/angular";
|
|
|
import {Router} from "@angular/router";
|
|
|
+import {AuthService} from "../serve-auth/auth.service";
|
|
|
|
|
|
-Parse.serverURL = "https://web2023.fmode.cn/parse" // 配置服务器地址
|
|
|
-Parse.initialize("dev") // 配置应用名称
|
|
|
+(Parse as any).serverURL = "https://web2023.fmode.cn/parse";
|
|
|
+// https://web2023.fmode.cn/s0210490/api/user/login
|
|
|
+Parse.initialize("dev")
|
|
|
|
|
|
|
|
|
@Component({
|
|
@@ -26,7 +28,7 @@ Parse.initialize("dev") // 配置应用名称
|
|
|
styleUrls: ['./page-mine.component.scss']
|
|
|
})
|
|
|
export class PageMineComponent {
|
|
|
- account = this.userServ.currentUser.account;
|
|
|
+ account = this.userServ.currentUser.username;
|
|
|
password = this.userServ.currentUser.password;
|
|
|
|
|
|
isFirstRegister = this.userServ.currentUser.isFirstRegister;
|
|
@@ -35,7 +37,8 @@ export class PageMineComponent {
|
|
|
currentUser = Parse.User.current();
|
|
|
|
|
|
|
|
|
- constructor(private fb: FormBuilder, private toastCtrl: ToastController, public userServ: UserService, private alertCtrl: AlertController, private router: Router) {
|
|
|
+ constructor(private authService: AuthService, private fb: FormBuilder, private toastCtrl: ToastController, public userServ: UserService, private alertCtrl: AlertController, private router: Router) {
|
|
|
+
|
|
|
this.myForm = this.fb.group({
|
|
|
phoneNumber: new FormControl('', [Validators.required, Validators.pattern(/^\d{10}$/)]),
|
|
|
name: new FormControl('', [Validators.required]),
|
|
@@ -55,6 +58,7 @@ export class PageMineComponent {
|
|
|
|
|
|
|
|
|
if (this.isFirstRegister === 1) {
|
|
|
+
|
|
|
this.selectedTabIndex = this.getTabIndexFromUrl();
|
|
|
} else {
|
|
|
|
|
@@ -64,6 +68,9 @@ export class PageMineComponent {
|
|
|
}
|
|
|
|
|
|
ngOnInit() {
|
|
|
+ console.log(typeof this.account,)
|
|
|
+ console.log(this.account)
|
|
|
+ this.authService.parseCurrentNew(this.account)
|
|
|
|
|
|
}
|
|
|
|
|
@@ -89,6 +96,7 @@ export class PageMineComponent {
|
|
|
user.set("educationLevel", params.educationLevel)
|
|
|
user.set("gender", params.gender)
|
|
|
user.set("name", params.name);
|
|
|
+ user.set("isFirstRegister", 2)
|
|
|
user.save().then((updatedUser: any) => {
|
|
|
console.log("---", updatedUser)
|
|
|
}).catch((error: any) => {
|
|
@@ -233,7 +241,7 @@ export class PageMineComponent {
|
|
|
}
|
|
|
|
|
|
done(): void {
|
|
|
- this.router.navigate(['/home/minterviews'])
|
|
|
+ this.router.navigate(['home/minterviews/0'])
|
|
|
}
|
|
|
|
|
|
|