You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.7 KiB
92 lines
3.7 KiB
<!-- start 面包屑 -->
|
|
<app-breadcrumb></app-breadcrumb>
|
|
<!-- end 面包屑 -->
|
|
<!--条件搜索-->
|
|
|
|
<div class="inner-content">
|
|
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)">
|
|
<div nz-row>
|
|
<div nz-col nzSpan="8">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="8">卡券名称</nz-form-label>
|
|
<nz-form-control [nzSpan]="14">
|
|
<input nz-input formControlName="couponName" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
|
|
<div nz-col nzSpan="8">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="8">使用状态</nz-form-label>
|
|
<nz-form-control [nzSpan]="14">
|
|
<nz-select nzShowSearch nzAllowClear formControlName="status" >
|
|
<nz-option nzLabel="待使用" nzValue="2"></nz-option>
|
|
<nz-option nzLabel="已使用" nzValue="3"></nz-option>
|
|
</nz-select>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
|
|
<div nz-col nzSpan="8">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="8">分发时间</nz-form-label>
|
|
<nz-form-control [nzSpan]="14">
|
|
<nz-range-picker
|
|
[nzShowTime]="{ nzHideDisabledOptions: true }"
|
|
formControlName="assignTimeArray"
|
|
nzFormat="yyyy-MM-dd HH:mm:ss"
|
|
></nz-range-picker>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
</div>
|
|
|
|
<div nz-row>
|
|
<div nz-col nzSpan="24" class="search-button">
|
|
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button>
|
|
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="inner-content">
|
|
<span>共计 {{dataObject.total?dataObject.total:0}} 条数据</span>
|
|
<div class="operating-button">
|
|
<button nz-button nzType="primary" class="right-btn" (click)="excelData()"><i nz-icon nzType="import" nzTheme="outline"></i>导出数据</button>
|
|
</div>
|
|
|
|
<!--数组表格 -->
|
|
<nz-table #basicTable
|
|
[nzData]="dataObject.list"
|
|
[nzTotal]="dataObject.total"
|
|
[nzFrontPagination]="false"
|
|
[nzLoading]="tableLoading"
|
|
[nzPageIndex]="whereObject.pageNum"
|
|
(nzPageIndexChange)="requestData($event)"
|
|
[nzScroll]="{ x: '1150px'}">
|
|
<thead>
|
|
<tr>
|
|
<th nzWidth="80px">序号</th>
|
|
<th nzWidth="150px">卡卷名称</th>
|
|
<th nzWidth="80px">卡券金额</th>
|
|
<th nzWidth="100px">分发时间</th>
|
|
<th nzWidth="100px">分发手机号</th>
|
|
<th nzWidth="100px">状态</th>
|
|
<!-- <th nzWidth="100px" nzRight="0px">操作</th>-->
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of basicTable.data;let i = index">
|
|
<td>{{i + 1}}</td>
|
|
<td>{{data.couponName}}</td>
|
|
<td>¥{{data.salesPrice}}</td>
|
|
<td>{{data.salesTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td>
|
|
<td>{{data.convertUserPhone}}</td>
|
|
<td>{{data.status == 2?'待使用':'已使用'}}</td>
|
|
<!-- <td nzRight="0px" class="table-td-operation">
|
|
</td>-->
|
|
</tr>
|
|
</tbody>
|
|
</nz-table>
|
|
</div>
|
|
|