|
@@ -59,6 +59,7 @@
|
59
|
59
|
<tr class="thead">
|
60
|
60
|
<th nzWidth="5%" nzShowCheckbox [(nzChecked)]="isAllDisplayDataChecked"
|
61
|
61
|
(nzCheckedChange)="checkAll($event)"></th>
|
|
62
|
+ <th nzWidth="5%">排序号</th>
|
62
|
63
|
<th nzWidth="10%">科室名称</th>
|
63
|
64
|
<th nzWidth="10%">父级科室名称</th>
|
64
|
65
|
<th nzWidth="10%">别名</th>
|
|
@@ -67,12 +68,13 @@
|
67
|
68
|
<th nzWidth="10%">科室类型</th>
|
68
|
69
|
<th nzWidth="10%">交接类型</th>
|
69
|
70
|
<th nzWidth="10%">科室位置</th>
|
70
|
|
- <th nzWidth="15%">操作</th>
|
|
71
|
+ <th nzWidth="10%">操作</th>
|
71
|
72
|
</tr>
|
72
|
73
|
</thead>
|
73
|
74
|
<tbody>
|
74
|
75
|
<tr *ngFor="let data of listOfData" (click)="selectedListData(data.id)">
|
75
|
76
|
<td nzShowCheckbox [(nzChecked)]="mapOfCheckedId[data.id]" (nzCheckedChange)="refreshStatus()"></td>
|
|
77
|
+ <td>{{ data.orders }}</td>
|
76
|
78
|
<td>{{ data.dept||'无' }}</td>
|
77
|
79
|
<td>{{ data.parent?data.parent.dept:'无' }}</td>
|
78
|
80
|
<td>{{ data.deptalias||'无' }}</td>
|
|
@@ -113,6 +115,14 @@
|
113
|
115
|
<overlay-scrollbars #osComponentRef1 class="content">
|
114
|
116
|
<form nz-form [formGroup]="validateForm" class="addForm" (ngSubmit)="submitForm()">
|
115
|
117
|
<nz-form-item>
|
|
118
|
+ <nz-form-label [nzSm]="6" [nzXs]="24" nzFor="orders">排序号</nz-form-label>
|
|
119
|
+ <nz-form-control nzErrorTip="请填写排序号!">
|
|
120
|
+ <nz-input-group>
|
|
121
|
+ <nz-input-number class="w100" formControlName="orders" nzPlaceHolder="请输入排序号" [nzMin]="0" [nzStep]="1" [nzPrecision]="0"></nz-input-number>
|
|
122
|
+ </nz-input-group>
|
|
123
|
+ </nz-form-control>
|
|
124
|
+ </nz-form-item>
|
|
125
|
+ <nz-form-item>
|
116
|
126
|
<nz-form-label [nzSm]="6" [nzXs]="24" nzFor="parentOfficeName">父级科室</nz-form-label>
|
117
|
127
|
<nz-form-control nzErrorTip="请填写父级科室!">
|
118
|
128
|
<nz-select nzAllowClear [nzDropdownMatchSelectWidth]="false" formControlName="parentOfficeName" nzShowSearch
|