You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.7 KiB
37 lines
1.7 KiB
<div class="bigbox"> |
|
<app-title [title]="title"></app-title> |
|
<div class="content"> |
|
<mat-list class="list" role="list"> |
|
<mat-list-item role="listitem"> |
|
<span class="name">熟悉对象</span> |
|
<input type="text" placeholder="请选择单位 >" (click)="openUnitList()" [(ngModel)]="unitname"> |
|
</mat-list-item> |
|
<mat-list-item role="listitem"> |
|
<span class="name">详细地址</span> |
|
<input type="text" placeholder="请输入详细地址" [(ngModel)]="address"> |
|
</mat-list-item> |
|
<mat-list-item role="listitem"> |
|
<span class="name">联系人</span> |
|
<input type="text" placeholder="请输入联系人姓名" [(ngModel)]="contactname"> |
|
</mat-list-item> |
|
<mat-list-item role="listitem"> |
|
<span class="name">联系人电话</span> |
|
<input type="text" placeholder="请输入联系电话" [(ngModel)]="contactphone"> |
|
</mat-list-item> |
|
<mat-list-item role="listitem"> |
|
<span class="name">熟悉人员数量</span> |
|
<input type="text" placeholder="请输入人数" [(ngModel)]="peoplenum"> |
|
</mat-list-item> |
|
<mat-list-item role="listitem"> |
|
<span class="name">带队领导</span> |
|
<input type="text" placeholder="请输入带队人姓名" [(ngModel)]="leadname"> |
|
</mat-list-item> |
|
</mat-list> |
|
<div class="btnbox"> |
|
<button class="ok" (click)="ok()">确认</button> |
|
<button class="cancel" (click)="cancel()">取消</button> |
|
</div> |
|
</div> |
|
|
|
</div> |
|
|
|
|