seimin 10 月之前
父节点
当前提交
218e795bad

+ 1 - 1
src/app/views/quilt-washing-personnel-statistics/quilt-washing-personnel-statistics.component.html

@@ -47,7 +47,7 @@
47
         </div>
47
         </div>
48
         <div class="list-template__searchItem">
48
         <div class="list-template__searchItem">
49
           <span class="label">人员分组</span>:
49
           <span class="label">人员分组</span>:
50
-          <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" [nzShowSearch]="false" nzPlaceHolder="请选择人员分组" [(ngModel)]="searchDto.group">
50
+          <nz-select class="formItem" nzAllowClear [nzDropdownMatchSelectWidth]="false" [nzShowSearch]="false" nzPlaceHolder="请选择人员分组" [(ngModel)]="searchDto.group">
51
             <nz-option [nzLabel]="data.groupName" [nzValue]="data.id" *ngFor="let data of groupList"></nz-option>
51
             <nz-option [nzLabel]="data.groupName" [nzValue]="data.id" *ngFor="let data of groupList"></nz-option>
52
           </nz-select>
52
           </nz-select>
53
         </div>
53
         </div>

+ 2 - 2
src/app/views/quilt-washing-trend-analysis/quilt-washing-trend-analysis.component.ts

@@ -116,7 +116,7 @@ export class QuiltWashingTrendAnalysisComponent implements OnInit {
116
           name: e.deptName,
116
           name: e.deptName,
117
           value: e.priceRate,
117
           value: e.priceRate,
118
           label: {
118
           label: {
119
-            position: e.priceRate >= 0 ? 'top' : 'bottom',
119
+            position: e.priceRate >= 0 ? 'bottom' : 'bottom',
120
           }
120
           }
121
         });
121
         });
122
       });
122
       });
@@ -208,7 +208,7 @@ export class QuiltWashingTrendAnalysisComponent implements OnInit {
208
           name: e.deptName,
208
           name: e.deptName,
209
           value: e.countRate,
209
           value: e.countRate,
210
           label: {
210
           label: {
211
-            position: e.countRate >= 0 ? 'top' : 'bottom',
211
+            position: e.countRate >= 0 ? 'bottom' : 'bottom',
212
           }
212
           }
213
         });
213
         });
214
       });
214
       });