fix bug
This commit is contained in:
@ -83,6 +83,12 @@ export class WithdrawalsRecordComponent extends BasicTableComponent {
|
||||
if (item) {
|
||||
params = [item.id];
|
||||
} else {
|
||||
console.log(this.selectedRows);
|
||||
|
||||
if (this.selectedRows.length <= 0) {
|
||||
this.service.msgSrv.error('请选择提现单!');
|
||||
return;
|
||||
}
|
||||
params = this.selectedRows.map(node => node.id);
|
||||
}
|
||||
const modal = this.nzModalService.create({
|
||||
|
||||
Reference in New Issue
Block a user