[web-app] http拦截器修改,新增监控页面编码
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>monitor-modify works!</p>
|
||||
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MonitorEditComponent } from './monitor-edit.component';
|
||||
|
||||
describe('MonitorModifyComponent', () => {
|
||||
let component: MonitorEditComponent;
|
||||
let fixture: ComponentFixture<MonitorEditComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ MonitorEditComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(MonitorEditComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-monitor-modify',
|
||||
templateUrl: './monitor-edit.component.html',
|
||||
styles: [
|
||||
]
|
||||
})
|
||||
export class MonitorEditComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user