This commit is contained in:
wangshiming
2022-04-26 16:59:05 +08:00
parent 58d0023b4d
commit d3e8365cf6
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-25 20:18:52 * @Date : 2022-01-25 20:18:52
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-26 16:20:47 * @LastEditTime : 2022-04-26 16:58:41
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html * @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -41,7 +41,7 @@
<nz-option *ngFor="let item of grage" [nzValue]="item.id" [nzLabel]="item.gradeName" ></nz-option> <nz-option *ngFor="let item of grage" [nzValue]="item.id" [nzLabel]="item.gradeName" ></nz-option>
</nz-select> </nz-select>
<nz-select *ngIf="type == '1'" style="min-width: 150px;" [(ngModel)]="item.gradeConfigId" > <nz-select *ngIf="type == '1'" style="min-width: 150px;" [(ngModel)]="item.gradeConfigId" >
<nz-option [nzValue]="0" nzLabel="全部等级" ></nz-option> <nz-option [nzValue]="'0'" nzLabel="全部等级" ></nz-option>
</nz-select> </nz-select>
</div> </div>
</td> </td>

View File

@ -42,7 +42,7 @@ export class RebateTableComponent implements OnInit {
} else if (!this.hiden && this.type == '1'){ } else if (!this.hiden && this.type == '1'){
this.data = [ this.data = [
{ {
gradeConfigId: 0, gradeConfigId: '0',
startAmount: 0, startAmount: 0,
endAmount: 0, endAmount: 0,
managementFeeRatio: 0, managementFeeRatio: 0,