|
|
|
@ -142,6 +142,8 @@ |
|
|
|
|
<th nzWidth="180px">创建时间</th> |
|
|
|
|
<th nzWidth="180px">退款时间</th> |
|
|
|
|
<th nzWidth="300px">退款备注</th> |
|
|
|
|
<th nzWidth="150px">操作人类型</th> |
|
|
|
|
<th nzWidth="150px">操作人名称</th> |
|
|
|
|
<th nzWidth="110px" nzRight="0px">操作</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
@ -161,6 +163,8 @@ |
|
|
|
|
<td>{{data.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
|
<td>{{data.refundTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
|
<td nzBreakWord>{{data.refundRemark}}</td > |
|
|
|
|
<td>{{data.opUserType | orderRefundOpuserType}}</td> |
|
|
|
|
<td>{{data.opUserName}}</td> |
|
|
|
|
<td nzRight="0px" class="table-td-operation"> |
|
|
|
|
<a nz-dropdown [nzDropdownMenu]="menu"> 操作列表 <i nz-icon nzType="down"></i> </a> |
|
|
|
|
<nz-dropdown-menu #menu="nzDropdownMenu"> |
|
|
|
@ -210,14 +214,8 @@ |
|
|
|
|
<nz-tab nzTitle="交易时间"> |
|
|
|
|
<nz-card> |
|
|
|
|
<nz-timeline> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.createTime != null"> |
|
|
|
|
<p>创建时间:{{orderDetailObject.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</p> |
|
|
|
|
<p>备注:{{orderDetailObject.remarks?orderDetailObject.tradeOrder.remarks:'无'}}</p> |
|
|
|
|
</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.cancelTime != null"> |
|
|
|
|
<p>取消时间:{{orderDetailObject.cancelTime | date : 'yyyy-MM-dd HH:mm:ss'}}</p> |
|
|
|
|
<p>备注:{{orderDetailObject.cancelRemarks?orderDetailObject.cancelRemarks:'无'}}</p> |
|
|
|
|
</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.createTime != null">创建时间:{{orderDetailObject.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.cancelTime != null">取消时间:{{orderDetailObject.cancelTime | date : 'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.payTime != null">支付时间:{{orderDetailObject.payTime | date : 'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.finishTime != null">完成时间:{{orderDetailObject.finishTime | date : 'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item> |
|
|
|
|
<nz-timeline-item *ngIf="orderDetailObject.refundTime != null">退款时间:{{orderDetailObject.refundTime | date : 'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item> |
|
|
|
@ -225,21 +223,24 @@ |
|
|
|
|
</nz-card> |
|
|
|
|
</nz-tab> |
|
|
|
|
<nz-tab nzTitle="产品信息"> |
|
|
|
|
<nz-table #childOrder [nzData]="orderDetailObject.highChildOrderList" [nzHideOnSinglePage]="true"> |
|
|
|
|
<nz-table #childOrder [nzData]="orderDetailObject.tradeOrder.highChildOrderList" [nzHideOnSinglePage]="true" [nzScroll]="{ x: '1000px'}"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th nzWidth="110px">订单编号</th> |
|
|
|
|
<th nzWidth="60px">产品类型</th> |
|
|
|
|
<th nzWidth="150px">产品名称</th> |
|
|
|
|
<th nzWidth="80px">产品规格</th> |
|
|
|
|
<th nzWidth="20px">数量</th> |
|
|
|
|
<th nzWidth="20px">单价</th> |
|
|
|
|
<th nzWidth="20px">总价</th> |
|
|
|
|
<th nzWidth="60px">数量</th> |
|
|
|
|
<th nzWidth="60px">单价</th> |
|
|
|
|
<th nzWidth="60px">总价</th> |
|
|
|
|
<th nzWidth="80px">订单状态</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let data of childOrder.data"> |
|
|
|
|
<td>{{ data.childOrderNo}}</td> |
|
|
|
|
<td>{{ data.goodsType | orderChildGoodsType}}</td> |
|
|
|
|
<td> |
|
|
|
|
<td nzEllipsis> |
|
|
|
|
{{ data.goodsName }} |
|
|
|
|
<nz-tag *ngIf="data.giveawayType == 1" [nzColor]="'magenta'">赠品</nz-tag> |
|
|
|
|
</td> |
|
|
|
@ -247,6 +248,7 @@ |
|
|
|
|
<td>{{ data.saleCount }}</td> |
|
|
|
|
<td>{{ data.goodsActualPrice }} 元</td> |
|
|
|
|
<td>{{ data.totalActualPrice }} 元</td> |
|
|
|
|
<td>{{ data.childOrderStatus | orderChildStatus}} </td> |
|
|
|
|
</tr> |
|
|
|
|
</tbody> |
|
|
|
|
</nz-table> |
|
|
|
|