Revize fb3df914
Přidáno uživatelem Hung Hoang před asi 6 roky(ů)
frontend/src/app/app.component.html | ||
---|---|---|
13 | 13 |
<div class="col-lg-7"> |
14 | 14 |
<router-outlet></router-outlet> |
15 | 15 |
</div> |
16 |
<div class="col-lg-3">mas</div>
|
|
16 |
<div class="col-lg-3"></div> |
|
17 | 17 |
</div> |
18 | 18 |
</div> |
frontend/src/app/employees-list/employees-list.component.html | ||
---|---|---|
1 |
<p> |
|
2 |
employees-list works! |
|
3 |
</p> |
|
1 |
<div> |
|
2 |
<div> |
|
3 |
<h3>Zaměstnanci |
|
4 |
<span class="material-icons">add</span> |
|
5 |
<span class="material-icons">edit</span> |
|
6 |
</h3> |
|
7 |
|
|
8 |
</div> |
|
9 |
<hr> |
|
10 |
</div> |
frontend/src/app/employees-list/employees-list.component.sass | ||
---|---|---|
1 |
.material-icons |
|
2 |
display: inline-flex |
|
3 |
align-items: center |
|
4 |
justify-content: center |
|
5 |
vertical-align: middle |
|
6 |
|
frontend/src/app/mock-menu-items.ts | ||
---|---|---|
2 | 2 |
|
3 | 3 |
export const MENU_ITEMS: MenuItem[] = [ |
4 | 4 |
{name: 'Dashboard', routePath: 'dashboard'}, |
5 |
{name: 'Zamestnanci', routePath: 'employees'},
|
|
5 |
{name: 'Zaměstnanci', routePath: 'employees'},
|
|
6 | 6 |
]; |
frontend/src/index.html | ||
---|---|---|
7 | 7 |
|
8 | 8 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
9 | 9 |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> |
10 |
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> |
|
10 | 11 |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
11 | 12 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> |
12 | 13 |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> |
Také k dispozici: Unified diff
Re #7263 Added simple page for employee route