diff --git a/package-lock.json b/package-lock.json
index 5eccfb3..f568697 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -7530,11 +7530,11 @@
}
},
"echarts": {
- "version": "4.6.0",
- "resolved": "https://registry.npm.taobao.org/echarts/download/echarts-4.6.0.tgz?cache=0&sync_timestamp=1577438297540&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fecharts%2Fdownload%2Fecharts-4.6.0.tgz",
- "integrity": "sha1-taR6EEbOyTzu75VPnuVHUTQFWOw=",
+ "version": "4.9.0",
+ "resolved": "https://registry.npm.taobao.org/echarts/download/echarts-4.9.0.tgz?cache=0&sync_timestamp=1606890707379&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fecharts%2Fdownload%2Fecharts-4.9.0.tgz",
+ "integrity": "sha1-qbm6oD8Doqcx5jQMVb77V6nhNH0=",
"requires": {
- "zrender": "4.2.0"
+ "zrender": "4.3.2"
}
},
"ee-first": {
@@ -11999,7 +11999,7 @@
},
"parse5": {
"version": "5.1.1",
- "resolved": "https://registry.npm.taobao.org/parse5/download/parse5-5.1.1.tgz?cache=0&sync_timestamp=1595849319979&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fparse5%2Fdownload%2Fparse5-5.1.1.tgz",
+ "resolved": "https://registry.npm.taobao.org/parse5/download/parse5-5.1.1.tgz",
"integrity": "sha1-9o5OW6GFKsLK3AD0VV//bCq7YXg=",
"optional": true
},
@@ -18471,9 +18471,9 @@
"integrity": "sha1-Z8oISzEW/DP8QENeDV6kCiB+OS4="
},
"zrender": {
- "version": "4.2.0",
- "resolved": "https://registry.npm.taobao.org/zrender/download/zrender-4.2.0.tgz?cache=0&sync_timestamp=1576159866096&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fzrender%2Fdownload%2Fzrender-4.2.0.tgz",
- "integrity": "sha1-0AEwLhVfKN4fn8f81cJUutKEcc8="
+ "version": "4.3.2",
+ "resolved": "https://registry.npm.taobao.org/zrender/download/zrender-4.3.2.tgz?cache=0&sync_timestamp=1605885988121&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fzrender%2Fdownload%2Fzrender-4.3.2.tgz",
+ "integrity": "sha1-7HQy+UFcgsc1hLa3uMR+GwFiCcY="
}
}
}
diff --git a/package.json b/package.json
index d86f914..1716269 100644
--- a/package.json
+++ b/package.json
@@ -27,7 +27,7 @@
"bson-objectid": "^1.3.1",
"cesium": "^1.64.0",
"e-ngx-cesium": "^6.3.2",
- "echarts": "^4.6.0",
+ "echarts": "^4.9.0",
"firebase": "^7.6.2",
"ng-zorro-antd": "^10.2.0",
"ng2-file-upload": "^1.4.0",
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index bd6ecc8..bfe5587 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -1,3 +1,11 @@
+/*
+ * @Descripttion:
+ * @version:
+ * @Author: sueRimn
+ * @Date: 2020-12-20 10:30:23
+ * @LastEditors: sueRimn
+ * @LastEditTime: 2020-12-20 15:36:30
+ */
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { LoginComponent } from './pages/login/login.component';
@@ -17,6 +25,7 @@ const routes: Routes = [
path:'home',component:NavigationComponent,canActivate: [AuthGuard],//守卫验证
children:[
{path:'',loadChildren:() => import('./examiner/examiner.module').then(m => m.ExaminerModule)},
+ {path:'',loadChildren:() => import('./student/student.module').then(m => m.StudentModule)},
{path:'',loadChildren:() => import('./ui/ui.module').then(m => m.UiModule)}
]
},
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 126f803..9aa784e 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -1,3 +1,11 @@
+/*
+ * @Descripttion:
+ * @version:
+ * @Author: sueRimn
+ * @Date: 2020-12-12 09:14:54
+ * @LastEditors: sueRimn
+ * @LastEditTime: 2020-12-20 15:34:49
+ */
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
@@ -20,7 +28,9 @@ import { ComponentServiceService } from './component-service.service';
import { registerLocaleData } from '@angular/common';
import zh from '@angular/common/locales/zh';
import { ExaminerModule } from './examiner/examiner.module';
+import { StudentModule} from './student/student.module'
registerLocaleData(zh);
+import { from } from 'rxjs';
@NgModule({
declarations: [
@@ -37,7 +47,8 @@ registerLocaleData(zh);
PagesModule,
FormsModule,
HttpClientModule,
- ExaminerModule
+ ExaminerModule,
+ StudentModule
],
providers: [httpInterceptorProviders, CacheTokenService,TreeService,ComponentServiceService],
bootstrap: [AppComponent]
diff --git a/src/app/examiner/examiner-index/examiner-index.component.html b/src/app/examiner/examiner-index/examiner-index.component.html
index 9ee8aae..896fc78 100644
--- a/src/app/examiner/examiner-index/examiner-index.component.html
+++ b/src/app/examiner/examiner-index/examiner-index.component.html
@@ -4,20 +4,40 @@
* @Author: sueRimn
* @Date: 2020-12-11 09:06:03
* @LastEditors: sueRimn
- * @LastEditTime: 2020-12-15 14:40:26
+ * @LastEditTime: 2020-12-20 09:33:02
-->