|
|
@ -163,7 +163,8 @@ |
|
|
|
<th nzWidth="100px">支付金额</th> |
|
|
|
<th nzWidth="100px">支付金额</th> |
|
|
|
<th nzWidth="140px">生成时间</th> |
|
|
|
<th nzWidth="140px">生成时间</th> |
|
|
|
<th nzWidth="100px" nzRight>支付方式</th> |
|
|
|
<th nzWidth="100px" nzRight>支付方式</th> |
|
|
|
<th nzWidth="100px" nzRight>状态</th> |
|
|
|
<th nzWidth="300px" nzRight>充值状态</th> |
|
|
|
|
|
|
|
<th nzWidth="100px" nzRight>订单状态</th> |
|
|
|
<th nzWidth="200px" nzRight>操作</th> |
|
|
|
<th nzWidth="200px" nzRight>操作</th> |
|
|
|
</tr> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
</thead> |
|
|
@ -181,12 +182,15 @@ |
|
|
|
<td>{{data.payPrice}}</td> |
|
|
|
<td>{{data.payPrice}}</td> |
|
|
|
<td>{{data.createTimed | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td>{{data.createTimed | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td nzRight>{{data.payType | rechargePayType}}</td> |
|
|
|
<td nzRight>{{data.payType | rechargePayType}}</td> |
|
|
|
|
|
|
|
<td nzRight> |
|
|
|
|
|
|
|
{{data.rechargeStatus == 1 ? '充值异常' : '正常'}} |
|
|
|
|
|
|
|
<span *ngIf="data.rechargeStatus === 1 && data.abnormalMsg != null">({{data.abnormalMsg}})</span> |
|
|
|
|
|
|
|
</td> |
|
|
|
<td nzRight>{{data.status | rechargeStatus}}</td> |
|
|
|
<td nzRight>{{data.status | rechargeStatus}}</td> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<a (click)="getDetail(data.id)">详情</a> |
|
|
|
<a (click)="getDetail(data.id)">详情</a> |
|
|
|
<!-- <a *ngIf="data.status === 2" (click)="finishOrder(data.id)">完成充值</a>--> |
|
|
|
<a *ngIf="data.rechargeStatus === 1" (click)="getMobileRechargeByOrderId(data.id)">再次充值</a> |
|
|
|
<!--<!– <a *ngIf="data.status === 2 && data.payType !== 3" (click)="orderToRefund(data.id)">退款</a>–>--> |
|
|
|
<a *ngIf="data.status === 2" (click)="postRefund(data.orderNo)">申请退款</a> |
|
|
|
<!-- <a *ngIf="data.status === 2 && data.payType !== 3" (click)="postRefund(data.orderNo)">申请退款</a>--> |
|
|
|
|
|
|
|
</td> |
|
|
|
</td> |
|
|
|
</tbody> |
|
|
|
</tbody> |
|
|
|
</nz-table> |
|
|
|
</nz-table> |
|
|
@ -211,10 +215,10 @@ |
|
|
|
<nz-descriptions-item *ngIf="data['refundTime'] != null" nzTitle="退款时间">{{data['refundTime'] | date: 'yyyy-MM-dd HH:mm:ss'}}</nz-descriptions-item> |
|
|
|
<nz-descriptions-item *ngIf="data['refundTime'] != null" nzTitle="退款时间">{{data['refundTime'] | date: 'yyyy-MM-dd HH:mm:ss'}}</nz-descriptions-item> |
|
|
|
<nz-descriptions-item nzTitle="状态">{{data['status'] | rechargeStatus}}</nz-descriptions-item> |
|
|
|
<nz-descriptions-item nzTitle="状态">{{data['status'] | rechargeStatus}}</nz-descriptions-item> |
|
|
|
</nz-descriptions> |
|
|
|
</nz-descriptions> |
|
|
|
<div *nzModalFooter> |
|
|
|
<!-- <div *nzModalFooter>--> |
|
|
|
<button nz-button nzType="default" (click)="handleCancel()">取消</button> |
|
|
|
<!-- <button nz-button nzType="default" (click)="handleCancel()">取消</button>--> |
|
|
|
<button nz-button *ngIf="data['status'] === 2" nzType="primary" (click)="finishOrder(id)">完成充值</button> |
|
|
|
<!-- <button nz-button *ngIf="data['status'] === 2" nzType="primary" (click)="finishOrder(id)">完成充值</button>--> |
|
|
|
</div> |
|
|
|
<!-- </div>--> |
|
|
|
</nz-modal> |
|
|
|
</nz-modal> |
|
|
|
|
|
|
|
|
|
|
|
<nz-modal [(nzVisible)]="errorStudentVisible" nzTitle="导入失败数据" (nzOnCancel)="errorStudentVisible = false" nzWidth="1200px" [nzFooter]="null"> |
|
|
|
<nz-modal [(nzVisible)]="errorStudentVisible" nzTitle="导入失败数据" (nzOnCancel)="errorStudentVisible = false" nzWidth="1200px" [nzFooter]="null"> |
|
|
|