|
|
@ -29,6 +29,18 @@ |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div nz-col nzSpan="8"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label [nzSpan]="6">创建时间</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control [nzSpan]="16"> |
|
|
|
|
|
|
|
<nz-range-picker |
|
|
|
|
|
|
|
formControlName="createTime" |
|
|
|
|
|
|
|
[nzShowTime]="{ nzHideDisabledOptions: true}" |
|
|
|
|
|
|
|
nzFormat="yyyy-MM-dd HH:mm:ss" |
|
|
|
|
|
|
|
></nz-range-picker> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div nz-row> |
|
|
|
<div nz-row> |
|
|
@ -45,6 +57,10 @@ |
|
|
|
|
|
|
|
|
|
|
|
<div class="inner-content"> |
|
|
|
<div class="inner-content"> |
|
|
|
<span>共计 {{total}} 条数据</span> |
|
|
|
<span>共计 {{total}} 条数据</span> |
|
|
|
|
|
|
|
<div class="operating-button"> |
|
|
|
|
|
|
|
<button nz-button nzType="primary" class="right-btn" (click)="excelOrder()" ><i nz-icon nzType="import" nzTheme="outline"></i>导出订单</button> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<nz-table |
|
|
|
<nz-table |
|
|
|
class="table" |
|
|
|
class="table" |
|
|
|
#ajaxTable |
|
|
|
#ajaxTable |
|
|
@ -61,19 +77,19 @@ |
|
|
|
<thead nzSingleSort> |
|
|
|
<thead nzSingleSort> |
|
|
|
<tr> |
|
|
|
<tr> |
|
|
|
<th nzWidth="50px">编号</th> |
|
|
|
<th nzWidth="50px">编号</th> |
|
|
|
<th nzWidth="180px">订单号</th> |
|
|
|
<th nzWidth="200px">订单号</th> |
|
|
|
<th nzWidth="180px">油站名称</th> |
|
|
|
<th nzWidth="180px">油站名称</th> |
|
|
|
<th nzWidth="180px">油站地址</th> |
|
|
|
<th nzWidth="180px">油站地址</th> |
|
|
|
<th nzWidth="80px">类型</th> |
|
|
|
<th nzWidth="90px">类型</th> |
|
|
|
<th nzWidth="180px">油号</th> |
|
|
|
<th nzWidth="90px">油号</th> |
|
|
|
<th nzWidth="180px">油枪号</th> |
|
|
|
<th nzWidth="90px">油枪号</th> |
|
|
|
<th nzWidth="180px">油枪价</th> |
|
|
|
<th nzWidth="90px">油枪价</th> |
|
|
|
<th nzWidth="180px">优惠价</th> |
|
|
|
<th nzWidth="90px">优惠价</th> |
|
|
|
<th nzWidth="120px">加油升数</th> |
|
|
|
<th nzWidth="90px">加油升数</th> |
|
|
|
|
|
|
|
<th nzWidth="90px">加油金额</th> |
|
|
|
|
|
|
|
<th nzWidth="90px">支付金额</th> |
|
|
|
|
|
|
|
<th nzWidth="90px">优惠金额</th> |
|
|
|
<th nzWidth="120px">创建时间</th> |
|
|
|
<th nzWidth="120px">创建时间</th> |
|
|
|
<th nzRight nzWidth="90px">加油金额</th> |
|
|
|
|
|
|
|
<th nzRight nzWidth="90px">支付金额</th> |
|
|
|
|
|
|
|
<th nzRight nzWidth="90px">优惠金额</th> |
|
|
|
|
|
|
|
<th nzRight nzWidth="90px">状态</th> |
|
|
|
<th nzRight nzWidth="90px">状态</th> |
|
|
|
<th nzWidth="120px" nzRight>操作</th> |
|
|
|
<th nzWidth="120px" nzRight>操作</th> |
|
|
|
</tr> |
|
|
|
</tr> |
|
|
@ -85,15 +101,15 @@ |
|
|
|
<td>{{data.gasName}}</td> |
|
|
|
<td>{{data.gasName}}</td> |
|
|
|
<td>{{data.gasAddress}}</td> |
|
|
|
<td>{{data.gasAddress}}</td> |
|
|
|
<td>{{data.gasOilType == 1 ? '汽油': '柴油'}}</td> |
|
|
|
<td>{{data.gasOilType == 1 ? '汽油': '柴油'}}</td> |
|
|
|
<td>{{data.gasOilNo}}</td> |
|
|
|
<td>{{data.gasOilNo + "#"}}</td> |
|
|
|
<td>{{data.gasGunNo}}</td> |
|
|
|
<td>{{data.gasGunNo + "号"}}</td> |
|
|
|
<td>{{data.gasPriceGun}}</td> |
|
|
|
<td>{{data.gasPriceGun}}</td> |
|
|
|
<td>{{data.gasPricePreferences}}</td> |
|
|
|
<td>{{data.gasPricePreferences}}</td> |
|
|
|
<td>{{data.gasOilLiters}}</td> |
|
|
|
<td>{{data.gasOilLiters}}</td> |
|
|
|
|
|
|
|
<td>{{data.totalPrice}}</td> |
|
|
|
|
|
|
|
<td>{{data.payRealPrice}}</td> |
|
|
|
|
|
|
|
<td>{{data.deductionPrice}}</td> |
|
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td nzRight>{{data.totalPrice}}</td> |
|
|
|
|
|
|
|
<td nzRight>{{data.payRealPrice}}</td> |
|
|
|
|
|
|
|
<td nzRight>{{data.deductionPrice}}</td> |
|
|
|
|
|
|
|
<td nzRight>{{data.status | orderCouponStatus}}</td> |
|
|
|
<td nzRight>{{data.status | orderCouponStatus}}</td> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<a (click)="getDetail(data.orderNo)">详情</a> |
|
|
|
<a (click)="getDetail(data.orderNo)">详情</a> |
|
|
|