|
|
@ -250,3 +250,41 @@ |
|
|
|
</tbody> |
|
|
|
</tbody> |
|
|
|
</nz-table> |
|
|
|
</nz-table> |
|
|
|
</nz-modal> |
|
|
|
</nz-modal> |
|
|
|
|
|
|
|
<nz-modal [(nzVisible)]="errorStudentVisible" nzTitle="导入失败数据" (nzOnCancel)="errorStudentVisible = false" nzWidth="1200px" [nzFooter]="null"> |
|
|
|
|
|
|
|
<nz-table #errorStudentTable [nzData]="importErrorStudentArray" [nzScroll]="{ x: '1200px' }"> |
|
|
|
|
|
|
|
<thead> |
|
|
|
|
|
|
|
<tr> |
|
|
|
|
|
|
|
<th nzWidth="80px">序号</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">订单号</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">用户昵称</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">用户联系方式</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">充值类型</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">充值内容</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">支付方式</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">卡号</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">订单金额</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">应付金额</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">订单状态</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">支付时间</th> |
|
|
|
|
|
|
|
<th nzWidth="300px">原因</th> |
|
|
|
|
|
|
|
</tr> |
|
|
|
|
|
|
|
</thead> |
|
|
|
|
|
|
|
<tbody> |
|
|
|
|
|
|
|
<tr *ngFor="let data of errorStudentTable.data;let i = index"> |
|
|
|
|
|
|
|
<td>{{ i + 1}}</td> |
|
|
|
|
|
|
|
<td>{{data.orderNo}}</td> |
|
|
|
|
|
|
|
<td>{{data.userName}}</td> |
|
|
|
|
|
|
|
<td>{{data.userPhone}}</td> |
|
|
|
|
|
|
|
<td>{{data.rechargeModelName}}</td> |
|
|
|
|
|
|
|
<td>{{data.rechargeContent}}</td> |
|
|
|
|
|
|
|
<td>{{data.payTypeName}}</td> |
|
|
|
|
|
|
|
<td>{{data.cardNo}}</td> |
|
|
|
|
|
|
|
<td>{{data.orderPrice}}</td> |
|
|
|
|
|
|
|
<td>{{data.payRealPrice}}</td> |
|
|
|
|
|
|
|
<td>{{data.statusName}}</td> |
|
|
|
|
|
|
|
<td>{{data.payTime}}</td> |
|
|
|
|
|
|
|
<td>{{data.errorMessage}}</td> |
|
|
|
|
|
|
|
</tr> |
|
|
|
|
|
|
|
</tbody> |
|
|
|
|
|
|
|
</nz-table> |
|
|
|
|
|
|
|
</nz-modal> |
|
|
|