瀏覽代碼

login button sets mainMenu to root

Kris Blassingame 6 年之前
父節點
當前提交
2b2dadbf5d
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      frontEnd/src/app/app.component.ts
  2. 1
    1
      frontEnd/src/pages/home/home.ts

+ 1
- 1
frontEnd/src/app/app.component.ts 查看文件

@@ -9,7 +9,7 @@ import { RegisterPage } from '../pages/register/register';
9 9
   templateUrl: 'app.html'
10 10
 })
11 11
 export class MyApp {
12
-  rootPage:any = RegisterPage;
12
+  rootPage:any = HomePage;
13 13
 
14 14
   constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
15 15
     platform.ready().then(() => {

+ 1
- 1
frontEnd/src/pages/home/home.ts 查看文件

@@ -14,7 +14,7 @@ export class HomePage {
14 14
   }
15 15
 
16 16
   login() {
17
-    this.navCtrl.push(MainMenuPage);
17
+    this.navCtrl.setRoot(MainMenuPage);
18 18
   }
19 19
 
20 20
   register() {