setting menu device
This commit is contained in:
parent
8b2849104e
commit
6f928e2ca4
|
@ -963,11 +963,28 @@ export const MenuSettingsConfig: MenuConfig = {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: 'Device',
|
||||||
|
// icon: 'feather ft-life-buoy',
|
||||||
|
// page: '/device'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: 'Device',
|
title: 'Device',
|
||||||
icon: 'feather ft-life-buoy',
|
icon: 'feather ft-life-buoy',
|
||||||
|
page: 'null',
|
||||||
|
submenu: {
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
title: 'List Device',
|
||||||
page: '/device'
|
page: '/device'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'Control Device',
|
||||||
|
page: '/device/control-device'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'Cost Management',
|
title: 'Cost Management',
|
||||||
icon: 'feather ft-bar-chart-2',
|
icon: 'feather ft-bar-chart-2',
|
||||||
|
|
|
@ -1 +1,38 @@
|
||||||
<p>device-control works!</p>
|
<div class="app-content content bg-maintenance-image">
|
||||||
|
<div class="content-wrapper">
|
||||||
|
<div class="content-body">
|
||||||
|
<section class="flexbox-container">
|
||||||
|
<div class="col-12 d-flex align-items-center justify-content-center">
|
||||||
|
<div class="col-md-4 col-10 box-shadow-2 p-0">
|
||||||
|
<div class="card border-grey border-lighten-3 px-1 py-1 box-shadow-3 m-0">
|
||||||
|
<div class="card-body">
|
||||||
|
<span class="card-title text-center">
|
||||||
|
<img src="../../../../assets/images/logo/logo-dark-lg.png" class="img-fluid mx-auto d-block pt-2"
|
||||||
|
width="250" alt="logo">
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="card-body text-center">
|
||||||
|
<h3>Coming Soon</h3>
|
||||||
|
<p>We're sorry for the inconvenience.
|
||||||
|
<br> Please check back later.</p>
|
||||||
|
<div class="mt-2"><i class="la la-cog spinner font-large-2"></i></div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<!-- <p class="socialIcon card-text text-center pt-2 pb-2">
|
||||||
|
<a [routerLink]="" class="btn btn-social-icon mr-1 mb-1 btn-outline-facebook"><span
|
||||||
|
class="la la-facebook"></span></a>
|
||||||
|
<a [routerLink]="" class="btn btn-social-icon mr-1 mb-1 btn-outline-twitter"><span
|
||||||
|
class="la la-twitter"></span></a>
|
||||||
|
<a [routerLink]="" class="btn btn-social-icon mr-1 mb-1 btn-outline-linkedin"><span
|
||||||
|
class="la la-linkedin font-medium-4"></span></a>
|
||||||
|
<a [routerLink]="" class="btn btn-social-icon mr-1 mb-1 btn-outline-github"><span
|
||||||
|
class="la la-github font-medium-4"></span></a>
|
||||||
|
</p> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
|
@ -43,6 +43,10 @@ import { DeviceControlComponent } from './device-control/device-control.componen
|
||||||
path: '',
|
path: '',
|
||||||
component: DeviceComponent
|
component: DeviceComponent
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'control-device',
|
||||||
|
component: DeviceControlComponent,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'add-row',
|
path: 'add-row',
|
||||||
component: AddEditDeviceComponent,
|
component: AddEditDeviceComponent,
|
||||||
|
|
Loading…
Reference in New Issue