2019-10-21 13:20:14 +09:00
|
|
|
<div class="list-search">
|
|
|
|
<div class="selectbox">
|
2019-10-07 16:29:38 +09:00
|
|
|
<mat-select [(value)]="companyCode">
|
|
|
|
<mat-option
|
|
|
|
*ngFor="let company of companyList"
|
|
|
|
[value]="company.companyCode"
|
|
|
|
>
|
|
|
|
{{ company.companyName }}
|
|
|
|
</mat-option>
|
|
|
|
</mat-select>
|
|
|
|
</div>
|
2019-10-21 13:20:14 +09:00
|
|
|
<div class="searchbox">
|
2019-10-07 16:29:38 +09:00
|
|
|
<input
|
|
|
|
matInput
|
|
|
|
#searchWordInput
|
|
|
|
placeholder="name"
|
|
|
|
(keydown.enter)="onKeyDownEnter(searchWordInput.value)"
|
|
|
|
/>
|
2019-10-23 15:07:41 +09:00
|
|
|
<div class="btn-search">
|
|
|
|
<button
|
|
|
|
mat-button
|
|
|
|
matSuffix
|
|
|
|
mat-icon-button
|
|
|
|
aria-label="cancel"
|
|
|
|
(click)="searchWordInput.value = ''; onClickCancel()"
|
|
|
|
>
|
|
|
|
<mat-icon>close</mat-icon>
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-10-07 16:29:38 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-21 13:20:14 +09:00
|
|
|
|
|
|
|
<!--검색창만 있는 경우--------------------------------------------------------------------------
|
|
|
|
<div class="list-search">
|
|
|
|
<div class="searchbox">
|
|
|
|
<input
|
|
|
|
matInput
|
|
|
|
#searchWordInput
|
|
|
|
placeholder="name"
|
|
|
|
(keydown.enter)="onKeyDownEnter(searchWordInput.value)"
|
|
|
|
/>
|
|
|
|
<div class="btn-search"><i class="material-icons">search</i></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
-->
|