update versi
This commit is contained in:
parent
b968e8e434
commit
113221db7f
|
@ -13,7 +13,7 @@
|
|||
href="https://allbestsistem.com/"
|
||||
target="_blank"
|
||||
style="background-color: #000000 !important;"
|
||||
>Smart Building Management Systems (V@2024-06-22.01)
|
||||
>Smart Building Management Systems (V@2024-06-24.01)
|
||||
</a></span
|
||||
>
|
||||
</p>
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
<p>control-device-seemore works!</p>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ControlDeviceSeemoreComponent } from './control-device-seemore.component';
|
||||
|
||||
describe('ControlDeviceSeemoreComponent', () => {
|
||||
let component: ControlDeviceSeemoreComponent;
|
||||
let fixture: ComponentFixture<ControlDeviceSeemoreComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ ControlDeviceSeemoreComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ControlDeviceSeemoreComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
|
@ -0,0 +1,10 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-control-device-seemore',
|
||||
templateUrl: './control-device-seemore.component.html',
|
||||
styleUrls: ['./control-device-seemore.component.css']
|
||||
})
|
||||
export class ControlDeviceSeemoreComponent {
|
||||
|
||||
}
|
|
@ -26,6 +26,7 @@ import { FilterTopUsePipe } from './monitoring.pipe';
|
|||
import { SurveillanceComponent } from './surveillance/surveillance.component';
|
||||
import { WaterComponent } from './water/water.component';
|
||||
import { NgSelectModule } from '@ng-select/ng-select';
|
||||
import { ControlDeviceSeemoreComponent } from './control-device-seemore/control-device-seemore.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
|
@ -35,7 +36,8 @@ import { NgSelectModule } from '@ng-select/ng-select';
|
|||
DetailRoomComponent,
|
||||
FilterTopUsePipe,
|
||||
SurveillanceComponent,
|
||||
WaterComponent
|
||||
WaterComponent,
|
||||
ControlDeviceSeemoreComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
|
@ -74,6 +76,10 @@ import { NgSelectModule } from '@ng-select/ng-select';
|
|||
path: 'water-monitoring',
|
||||
component: WaterComponent,
|
||||
},
|
||||
{
|
||||
path: 'control-device/:id',
|
||||
component: ControlDeviceSeemoreComponent,
|
||||
},
|
||||
{
|
||||
path: 'monitoring-room/:id',
|
||||
component: RoomComponent,
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
<p
|
||||
class="card-subtitle line-on-side text-muted text-center font-small-3 mx-2 my-1"
|
||||
>
|
||||
<span>(v@2024.06.22.01)</span>
|
||||
<span>(v@2024.06.24.01)</span>
|
||||
</p>
|
||||
<!-- <div class="card-body">
|
||||
<a
|
||||
|
|
Loading…
Reference in New Issue