diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index c8e1abc..61196b3 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -7,7 +7,6 @@ import { NavigationComponent } from './navigation/navigation.component';
//路由守卫
import { AuthGuard } from './auth.guard'
import { HomeComponent } from './pages/home/home.component';
-import { ThreeHomeComponent } from './three-dimensional/three-home/three-home.component';
@@ -15,7 +14,6 @@ const routes: Routes = [
{ path: '', redirectTo: 'login', pathMatch: 'full' },
{ path: 'login', component: LoginComponent }, //登录页
{ path: 'register', component: RegisterComponent }, //注册页
- { path: 'threeDimensional', component: ThreeHomeComponent }, //三维场景
{
path: '', component: HomeComponent, children: [
{ path: 'home', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) }
diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts
deleted file mode 100644
index 6ee0c27..0000000
--- a/src/app/app.component.spec.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import { TestBed, async } from '@angular/core/testing';
-import { RouterTestingModule } from '@angular/router/testing';
-import { AppComponent } from './app.component';
-
-describe('AppComponent', () => {
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- imports: [
- RouterTestingModule
- ],
- declarations: [
- AppComponent
- ],
- }).compileComponents();
- }));
-
- it('should create the app', () => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app).toBeTruthy();
- });
-
- it(`should have as title 'anxin119'`, () => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app.title).toEqual('anxin119');
- });
-
- it('should render title', () => {
- const fixture = TestBed.createComponent(AppComponent);
- fixture.detectChanges();
- const compiled = fixture.debugElement.nativeElement;
- expect(compiled.querySelector('.content span').textContent).toContain('anxin119 app is running!');
- });
-});
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 7d59b2c..3bd559e 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -16,12 +16,10 @@ import { CacheTokenService } from './service/cache-token.service'
import { TreeService } from './service/tree.service'
import { CookieService } from 'ngx-cookie-service';//cookie插件
import { CountdownModule } from 'ngx-countdown'; //倒计时插件
-import { ThreeHomeComponent } from './three-dimensional/three-home/three-home.component';
@NgModule({
declarations: [
AppComponent,
- ThreeHomeComponent
],
imports: [
BrowserModule,
diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html
index 4471244..bf2dc3b 100644
--- a/src/app/pages/plan/plan.component.html
+++ b/src/app/pages/plan/plan.component.html
@@ -1 +1,3 @@
-
三级预案!
+
+
+
\ No newline at end of file
diff --git a/src/app/pages/plan/plan.component.scss b/src/app/pages/plan/plan.component.scss
index c85ac08..ea25d2d 100644
--- a/src/app/pages/plan/plan.component.scss
+++ b/src/app/pages/plan/plan.component.scss
@@ -1,16 +1,7 @@
-nz-select {
- margin: 0 8px 10px 0;
- width: 120px;
- // background-color: red;
-}
-
-.logo-self {
- font-size: 50px;
- text-shadow: 0px 0px 6px #8df;
- color: white;
- font-weight: 600;
-}
-.font{
- font-size: 20px;
- // font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
+.content{
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ position: relative;
+ canvas{ width: 100%; height: 100%; border: none; outline: none; }
}
\ No newline at end of file
diff --git a/src/app/pages/plan/plan.component.ts b/src/app/pages/plan/plan.component.ts
index 410a5be..c74cb66 100644
--- a/src/app/pages/plan/plan.component.ts
+++ b/src/app/pages/plan/plan.component.ts
@@ -1,4 +1,5 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, ElementRef, OnInit } from '@angular/core';
+import { Game } from 'src/app/babylon/game';
@Component({
selector: 'app-plan',
@@ -7,9 +8,20 @@ import { Component, OnInit } from '@angular/core';
})
export class PlanComponent implements OnInit {
- constructor() { }
+ constructor(private element: ElementRef,) { }
+
+ static instance: PlanComponent;
+ public game: Game = new Game();
+ public canvas: HTMLCanvasElement; //canvas 实例
ngOnInit(): void {
+ PlanComponent.instance = this;
+ this.canvas = this.element.nativeElement.querySelector('#center') as HTMLCanvasElement;
+ this.game.init(this.canvas);
+ }
+
+ ngOnDestroy(): void { //组件销毁前 销毁canvas
+
}
}
diff --git a/src/app/three-dimensional/three-dimensional.module.ts b/src/app/three-dimensional/three-dimensional.module.ts
deleted file mode 100644
index 2aaa2da..0000000
--- a/src/app/three-dimensional/three-dimensional.module.ts
+++ /dev/null
@@ -1,99 +0,0 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-import { A11yModule } from '@angular/cdk/a11y';
-import { DragDropModule } from '@angular/cdk/drag-drop';
-import { PortalModule } from '@angular/cdk/portal';
-import { ScrollingModule } from '@angular/cdk/scrolling';
-import { CdkStepperModule } from '@angular/cdk/stepper';
-import { CdkTableModule } from '@angular/cdk/table';
-import { CdkTreeModule } from '@angular/cdk/tree';
-import { MatAutocompleteModule } from '@angular/material/autocomplete';
-import { MatBadgeModule } from '@angular/material/badge';
-import { MatBottomSheetModule } from '@angular/material/bottom-sheet';
-import { MatButtonModule } from '@angular/material/button';
-import { MatButtonToggleModule } from '@angular/material/button-toggle';
-import { MatCardModule } from '@angular/material/card';
-import { MatCheckboxModule } from '@angular/material/checkbox';
-import { MatStepperModule } from '@angular/material/stepper';
-import { MatChipsModule } from '@angular/material/chips';
-import { MatDatepickerModule } from '@angular/material/datepicker';
-import { MatDialogModule } from '@angular/material/dialog';
-import { MatDividerModule } from '@angular/material/divider';
-import { MatExpansionModule } from '@angular/material/expansion';
-import { MatGridListModule } from '@angular/material/grid-list';
-import { MatIconModule } from '@angular/material/icon';
-import { MatInputModule } from '@angular/material/input';
-import { MatListModule } from '@angular/material/list';
-import { MatMenuModule } from '@angular/material/menu';
-import { MatNativeDateModule, MatRippleModule } from '@angular/material/core';
-import { MatPaginatorModule } from '@angular/material/paginator';
-import { MatProgressBarModule } from '@angular/material/progress-bar';
-import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
-import { MatRadioModule } from '@angular/material/radio';
-import { MatSelectModule } from '@angular/material/select';
-import { MatSidenavModule } from '@angular/material/sidenav';
-import { MatSliderModule } from '@angular/material/slider';
-import { MatSlideToggleModule } from '@angular/material/slide-toggle';
-import { MatSnackBarModule } from '@angular/material/snack-bar';
-import { MatSortModule } from '@angular/material/sort';
-import { MatTableModule } from '@angular/material/table';
-import { MatTabsModule } from '@angular/material/tabs';
-import { MatToolbarModule } from '@angular/material/toolbar';
-import { MatTooltipModule } from '@angular/material/tooltip';
-import { MatTreeModule } from '@angular/material/tree';
-import { FormsModule, ReactiveFormsModule } from '@angular/forms';
-import { ThreeHomeComponent } from './three-home/three-home.component';
-
-
-
-@NgModule({
- declarations: [ThreeHomeComponent],
- imports: [
- CommonModule,
- A11yModule,
- DragDropModule,
- PortalModule,
- ScrollingModule,
- CdkStepperModule,
- CdkTableModule,
- CdkTreeModule,
- MatAutocompleteModule,
- MatBadgeModule,
- MatBottomSheetModule,
- MatButtonModule,
- MatButtonToggleModule,
- MatCardModule,
- MatCheckboxModule,
- MatChipsModule,
- MatStepperModule,
- MatDatepickerModule,
- MatDialogModule,
- MatDividerModule,
- MatExpansionModule,
- MatGridListModule,
- MatIconModule,
- MatInputModule,
- MatListModule,
- MatMenuModule,
- MatNativeDateModule,
- MatRippleModule,
- MatPaginatorModule,
- MatProgressBarModule,
- MatProgressSpinnerModule,
- MatRadioModule,
- MatSelectModule,
- MatSidenavModule,
- MatSliderModule,
- MatSlideToggleModule,
- MatSnackBarModule,
- MatSortModule,
- MatTableModule,
- MatTabsModule,
- MatToolbarModule,
- MatTooltipModule,
- MatTreeModule,
- FormsModule,
- ReactiveFormsModule,
- ]
-})
-export class ThreeDimensionalModule { }
diff --git a/src/app/three-dimensional/three-home/three-home.component.html b/src/app/three-dimensional/three-home/three-home.component.html
deleted file mode 100644
index bf2dc3b..0000000
--- a/src/app/three-dimensional/three-home/three-home.component.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/app/three-dimensional/three-home/three-home.component.scss b/src/app/three-dimensional/three-home/three-home.component.scss
deleted file mode 100644
index ea25d2d..0000000
--- a/src/app/three-dimensional/three-home/three-home.component.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-.content{
- width: 100%;
- height: 100%;
- overflow: hidden;
- position: relative;
- canvas{ width: 100%; height: 100%; border: none; outline: none; }
-}
\ No newline at end of file
diff --git a/src/app/three-dimensional/three-home/three-home.component.ts b/src/app/three-dimensional/three-home/three-home.component.ts
deleted file mode 100644
index a404788..0000000
--- a/src/app/three-dimensional/three-home/three-home.component.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { Component, ElementRef, OnInit } from '@angular/core';
-import { Game } from 'src/app/babylon/game';
-
-@Component({
- selector: 'app-three-home',
- templateUrl: './three-home.component.html',
- styleUrls: ['./three-home.component.scss']
-})
-export class ThreeHomeComponent implements OnInit {
-
- constructor(private element: ElementRef,) { }
-
- static instance: ThreeHomeComponent;
- public game: Game = new Game();
- public canvas: HTMLCanvasElement; //canvas 实例
-
- ngOnInit(): void {
- ThreeHomeComponent.instance = this;
- this.canvas = this.element.nativeElement.querySelector('#center') as HTMLCanvasElement;
- this.game.init(this.canvas);
- }
-
-}
diff --git a/src/app/ui/tabbar/tabbar.component.ts b/src/app/ui/tabbar/tabbar.component.ts
index 4598098..0e0866c 100644
--- a/src/app/ui/tabbar/tabbar.component.ts
+++ b/src/app/ui/tabbar/tabbar.component.ts
@@ -25,11 +25,6 @@ export class TabbarComponent implements OnInit {
},1000);
}
- //进入 三维场景
- initThreeDimensional() {
- this.router.navigate(['/threeDimensional'])
- }
-
//获得时间
time:string
getTime() {
@@ -71,9 +66,7 @@ export class TabbarComponent implements OnInit {
//修改密码
changpsw() {
- let dialogRef = this.dialog.open(ChangepasswordComponent,
- { width: '348px' });
-
+ let dialogRef = this.dialog.open(ChangepasswordComponent,{ width: '348px' });
dialogRef.afterClosed().subscribe();
}