2019-11-13 06:42:30 +00:00
|
|
|
<div class="message-box container">
|
2019-11-14 08:43:45 +00:00
|
|
|
<div>
|
|
|
|
search Area.
|
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<mat-tab-group
|
|
|
|
mat-stretch-tabs
|
|
|
|
animationDuration="0ms"
|
|
|
|
(selectedIndexChange)="onSelectedIndexChange($event)"
|
|
|
|
>
|
|
|
|
<mat-tab>
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
수신
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
<div *ngFor="let message of messageList">
|
|
|
|
<dl>
|
|
|
|
<dt>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType && message.resType === ContentType.Image
|
|
|
|
"
|
|
|
|
>image</mat-icon
|
|
|
|
>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType &&
|
|
|
|
message.resType === ContentType.AttachFile
|
|
|
|
"
|
|
|
|
>attach_file</mat-icon
|
|
|
|
>
|
|
|
|
<ul>
|
|
|
|
<li>{{ message.userName }}</li>
|
|
|
|
<li>{{ message.title }}</li>
|
|
|
|
</ul>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
{{ message.regDate | dateToStringFormat: 'MM:DD' }}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</mat-tab>
|
|
|
|
<mat-tab>
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
발신
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
<div *ngFor="let message of messageList">
|
|
|
|
<dl>
|
|
|
|
<dt>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType && message.resType === ContentType.Image
|
|
|
|
"
|
|
|
|
>image</mat-icon
|
|
|
|
>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType &&
|
|
|
|
message.resType === ContentType.AttachFile
|
|
|
|
"
|
|
|
|
>attach_file</mat-icon
|
|
|
|
>
|
|
|
|
<ul>
|
|
|
|
<li>{{ message.userName }}</li>
|
|
|
|
<li>{{ message.title }}</li>
|
|
|
|
</ul>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
{{ message.regDate | dateToStringFormat: 'MM:DD' }}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</mat-tab>
|
|
|
|
<mat-tab>
|
|
|
|
<ng-template mat-tab-label>
|
|
|
|
예약
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
<div *ngFor="let message of messageList">
|
|
|
|
<dl>
|
|
|
|
<dt>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType && message.resType === ContentType.Image
|
|
|
|
"
|
|
|
|
>image</mat-icon
|
|
|
|
>
|
|
|
|
<mat-icon
|
|
|
|
*ngIf="
|
|
|
|
!!message.resType &&
|
|
|
|
message.resType === ContentType.AttachFile
|
|
|
|
"
|
|
|
|
>attach_file</mat-icon
|
|
|
|
>
|
|
|
|
<ul>
|
|
|
|
<li>{{ message.userName }}</li>
|
|
|
|
<li>{{ message.title }}</li>
|
|
|
|
</ul>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
{{ message.regDate | dateToStringFormat: 'MM:DD' }}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</mat-tab>
|
|
|
|
</mat-tab-group>
|
|
|
|
</div>
|
2019-11-13 06:42:30 +00:00
|
|
|
</div>
|