update versi
This commit is contained in:
parent
b968e8e434
commit
113221db7f
|
@ -13,7 +13,7 @@
|
||||||
href="https://allbestsistem.com/"
|
href="https://allbestsistem.com/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
style="background-color: #000000 !important;"
|
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
|
</a></span
|
||||||
>
|
>
|
||||||
</p>
|
</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 { SurveillanceComponent } from './surveillance/surveillance.component';
|
||||||
import { WaterComponent } from './water/water.component';
|
import { WaterComponent } from './water/water.component';
|
||||||
import { NgSelectModule } from '@ng-select/ng-select';
|
import { NgSelectModule } from '@ng-select/ng-select';
|
||||||
|
import { ControlDeviceSeemoreComponent } from './control-device-seemore/control-device-seemore.component';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
|
@ -35,7 +36,8 @@ import { NgSelectModule } from '@ng-select/ng-select';
|
||||||
DetailRoomComponent,
|
DetailRoomComponent,
|
||||||
FilterTopUsePipe,
|
FilterTopUsePipe,
|
||||||
SurveillanceComponent,
|
SurveillanceComponent,
|
||||||
WaterComponent
|
WaterComponent,
|
||||||
|
ControlDeviceSeemoreComponent
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
|
@ -74,6 +76,10 @@ import { NgSelectModule } from '@ng-select/ng-select';
|
||||||
path: 'water-monitoring',
|
path: 'water-monitoring',
|
||||||
component: WaterComponent,
|
component: WaterComponent,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'control-device/:id',
|
||||||
|
component: ControlDeviceSeemoreComponent,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'monitoring-room/:id',
|
path: 'monitoring-room/:id',
|
||||||
component: RoomComponent,
|
component: RoomComponent,
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
<p
|
<p
|
||||||
class="card-subtitle line-on-side text-muted text-center font-small-3 mx-2 my-1"
|
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>
|
</p>
|
||||||
<!-- <div class="card-body">
|
<!-- <div class="card-body">
|
||||||
<a
|
<a
|
||||||
|
|
Loading…
Reference in New Issue