12 changed files with 92 additions and 18 deletions
@ -0,0 +1,9 @@
|
||||
<!-- |
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2020-12-15 14:19:50 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2020-12-15 14:32:36 |
||||
--> |
||||
<p>统计分析</p> |
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { StatisticAnalysisComponent } from './statistic-analysis.component'; |
||||
|
||||
describe('StatisticAnalysisComponent', () => { |
||||
let component: StatisticAnalysisComponent; |
||||
let fixture: ComponentFixture<StatisticAnalysisComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ StatisticAnalysisComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(StatisticAnalysisComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-statistic-analysis', |
||||
templateUrl: './statistic-analysis.component.html', |
||||
styleUrls: ['./statistic-analysis.component.scss'] |
||||
}) |
||||
export class StatisticAnalysisComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue