|
|
|
@ -81,6 +81,7 @@ |
|
|
|
|
<tr> |
|
|
|
|
<th nzWidth="50px">编号</th> |
|
|
|
|
<th nzWidth="180px">消费码</th> |
|
|
|
|
<th nzWidth="180px">是否分发</th> |
|
|
|
|
<th nzWidth="70px">订单ID</th> |
|
|
|
|
<th nzWidth="120px">领取时间</th> |
|
|
|
|
<th nzWidth="120px">消费时间</th> |
|
|
|
@ -94,6 +95,7 @@ |
|
|
|
|
<tr *ngFor="let data of ajaxTable.data; let i = index"> |
|
|
|
|
<td>{{i + 1}}</td> |
|
|
|
|
<td>{{data.salesCode}}</td> |
|
|
|
|
<td>{{data.isAssignAgent === true ? '已分发' : '未分发'}}</td> |
|
|
|
|
<td>{{data.orderId == null ? '暂无' : data.orderId}}</td> |
|
|
|
|
<td>{{data.receiveTime == null ? '未领取' : data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
|
|
|
|
<td>{{data.consumeTime == null ? '未消费' : data.consumeTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
|
|
|
|