|
|
|
@ -108,7 +108,7 @@ |
|
|
|
|
(nzPageSizeChange)="getRequest(false , searchForm.value)"> |
|
|
|
|
<thead nzSingleSort> |
|
|
|
|
<tr> |
|
|
|
|
<th nzWidth="50px">编号</th> |
|
|
|
|
<th nzWidth="80px">编号</th> |
|
|
|
|
<th nzWidth="180px">订单名称</th> |
|
|
|
|
<th nzWidth="180px">订单类型</th> |
|
|
|
|
<th nzWidth="180px">订单号</th> |
|
|
|
@ -118,7 +118,7 @@ |
|
|
|
|
<th nzWidth="100px">支付金额</th> |
|
|
|
|
<th nzWidth="140px">生成时间</th> |
|
|
|
|
<th nzWidth="100px" nzRight>状态</th> |
|
|
|
|
<th nzWidth="150px" nzRight>操作</th> |
|
|
|
|
<th nzWidth="200px" nzRight>操作</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
@ -135,6 +135,7 @@ |
|
|
|
|
<td nzRight>{{data.status | rechargeStatus}}</td> |
|
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
|
<a (click)="getDetail(data.id)">详情</a> |
|
|
|
|
<a *ngIf="data.status === 2" (click)="finishOrder(data.id)">完成充值</a> |
|
|
|
|
<a *ngIf="data.status === 2" (click)="orderToRefund(data.id)">退款</a> |
|
|
|
|
</td> |
|
|
|
|
</tbody> |
|
|
|
@ -162,7 +163,7 @@ |
|
|
|
|
</nz-descriptions> |
|
|
|
|
<div *nzModalFooter> |
|
|
|
|
<button nz-button nzType="default" (click)="handleCancel()">取消</button> |
|
|
|
|
<button nz-button nzType="primary" (click)="handleOk()">完成充值</button> |
|
|
|
|
<button nz-button *ngIf="data['status'] === 2" nzType="primary" (click)="finishOrder(id)">完成充值</button> |
|
|
|
|
</div> |
|
|
|
|
</nz-modal> |
|
|
|
|
|
|
|
|
|