解决冲突
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-03-28 14:53:52
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-04-22 10:30:33
|
||||
* @LastEditTime : 2022-04-27 14:12:45
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add-partnerlist\\add-partnerlist.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -25,6 +25,5 @@
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }" [loading]="false"
|
||||
[scroll]="{ x: '1000' }">
|
||||
</st>
|
||||
<button style="float: right;" *ngIf="selectedIndex===0" (click)="batchReply()" nz-button nzType="primary" acl
|
||||
[acl-ability]="['AbnormalAppear-batchReply']">批量选择</button>
|
||||
<button style="float: right;" *ngIf="selectedIndex===0" (click)="batchReply()" nz-button nzType="primary">批量选择</button>
|
||||
</nz-card>
|
||||
|
||||
@ -55,7 +55,6 @@ export class ParterRebateManageMentAddPartnerListComponent implements OnInit {
|
||||
{
|
||||
text: '添加',
|
||||
click: _record => this.add(_record),
|
||||
acl: { ability: ['AbnormalAppear-reply'] }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-01-25 20:18:52
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-04-26 20:46:19
|
||||
* @LastEditTime : 2022-04-27 14:09:04
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -20,8 +20,8 @@
|
||||
<tr>
|
||||
<th rowspan="2" nzWidth="60px" nzAlign="center" nzLeft>序号</th>
|
||||
<th nzWidth="220px" nzAlign="center" >合伙人等级</th>
|
||||
<th nzWidth="160px" nzAlign="center" >初始业务量(万/月)</th>
|
||||
<th nzWidth="160px" nzAlign="center" >到达业务量(万/月)</th>
|
||||
<th nzWidth="160px" *ngIf="type == '2'" nzAlign="center" >初始业务量(万/月)</th>
|
||||
<th nzWidth="160px" *ngIf="type == '2'" nzAlign="center" >到达业务量(万/月)</th>
|
||||
<th nzWidth="160px" nzAlign="center" >管理费比例%</th>
|
||||
<th rowspan="2" nzWidth="60px" nzAlign="center" nzRight *ngIf="type == '2'">操作</th>
|
||||
</tr>
|
||||
@ -45,7 +45,7 @@
|
||||
</nz-select>
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="160px" nzAlign="center" >
|
||||
<td nzWidth="160px" nzAlign="center" *ngIf="type == '2'" >
|
||||
<div >
|
||||
<nz-input-group nzPrefix="=" >
|
||||
<nz-input-number nzPrefix="=" [(ngModel)]="item.startAmount" [nzMin]="0" [nzMax]="99999999"nzSize="small" (ngModelChange)="changeendAmount($event,i)"
|
||||
@ -55,7 +55,7 @@
|
||||
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="160px" nzAlign="center" >
|
||||
<td nzWidth="160px" nzAlign="center" *ngIf="type == '2'" >
|
||||
<div >
|
||||
<nz-input-group nzPrefix="<">
|
||||
<nz-input-number [(ngModel)]="item.endAmount" [nzMin]="0" [nzMax]="99999999" nzSize="small" >
|
||||
@ -64,15 +64,16 @@
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="160px" nzAlign="center" >
|
||||
<div >
|
||||
<div class="three" style="text-align: center;">
|
||||
<nz-input-group [nzAddOnAfter]="addOnAfterTemplate2">
|
||||
<nz-input-number [(ngModel)]="item.managementFeeRatio" [nzMin]="0" [nzMax]="100"nzSize="small"
|
||||
>
|
||||
<ng-template #addOnAfterTemplate2>
|
||||
<span >%</span>
|
||||
</ng-template>
|
||||
</nz-input-number>
|
||||
</nz-input-group>
|
||||
<ng-template #addOnAfterTemplate2>
|
||||
<span >%</span>
|
||||
</ng-template>
|
||||
</nz-input-group>
|
||||
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="60px" nzAlign="center" nzRight *ngIf="type == '2'">
|
||||
|
||||
@ -18,5 +18,8 @@
|
||||
.ant-input-affix-wrapper {
|
||||
border: none
|
||||
}
|
||||
.three .ant-input-affix-wrapper {
|
||||
width: 50% !important;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user