|
|
@ -1,5 +1,16 @@ |
|
|
|
<form nz-form [formGroup]="searchForm" class="search_form" [nzLayout]="'vertical'"> |
|
|
|
<form nz-form [formGroup]="searchForm" class="search_form" [nzLayout]="'vertical'"> |
|
|
|
<div nz-row [nzGutter]="24"> |
|
|
|
<div nz-row [nzGutter]="24"> |
|
|
|
|
|
|
|
<div nz-col [nzSpan]="24"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label>申请时间</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control> |
|
|
|
|
|
|
|
<nz-range-picker nzSize="large" formControlName="createTimeArray" nzShowTime [nzFormat]="'yyyy/MM/dd HH:mm:ss'"></nz-range-picker> |
|
|
|
|
|
|
|
<nz-radio-group nzSize="large" nzButtonStyle="solid" formControlName="createTimeSelect" (ngModelChange)="createTimeInit()"> |
|
|
|
|
|
|
|
<label nz-radio-button *ngFor="let item of dateTypeSelect" nzValue="{{item.value}}">{{item.name}}</label> |
|
|
|
|
|
|
|
</nz-radio-group> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div nz-col [nzSpan]="6"> |
|
|
|
<div nz-col [nzSpan]="6"> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-label>用户手机号</nz-form-label> |
|
|
|
<nz-form-label>用户手机号</nz-form-label> |
|
|
@ -27,6 +38,24 @@ |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div nz-col [nzSpan]="6"> |
|
|
|
<div nz-col [nzSpan]="6"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label>售后状态</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control> |
|
|
|
|
|
|
|
<nz-select nzSize="large" formControlName="status" nzAllowClear [nzPlaceHolder]="'请选择'"> |
|
|
|
|
|
|
|
<nz-option *ngFor="let item of applyStatusArray" nzValue="{{item.codeValue}}" nzLabel="{{item.codeName}}"></nz-option> |
|
|
|
|
|
|
|
</nz-select> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div nz-col [nzSpan]="6" [hidden]="!isCollapse"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label>交易单号</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control> |
|
|
|
|
|
|
|
<input nzSize="large" nz-input formControlName="orderNo" placeholder="请输入" /> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div nz-col [nzSpan]="6" [hidden]="!isCollapse"> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-label>商品单号</nz-form-label> |
|
|
|
<nz-form-label>商品单号</nz-form-label> |
|
|
|
<nz-form-control> |
|
|
|
<nz-form-control> |
|
|
@ -34,36 +63,37 @@ |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div nz-col [nzSpan]="6"> |
|
|
|
<div nz-col [nzSpan]="6" [hidden]="!isCollapse"> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-label>状态</nz-form-label> |
|
|
|
<nz-form-label>产品类型</nz-form-label> |
|
|
|
<nz-form-control> |
|
|
|
<nz-form-control> |
|
|
|
<nz-select nzSize="large" formControlName="status" nzAllowClear [nzPlaceHolder]="'请选择'"> |
|
|
|
<nz-select nzSize="large" formControlName="productType" nzAllowClear [nzPlaceHolder]="'请选择'"> |
|
|
|
<nz-option *ngFor="let item of applyStatusArray" nzValue="{{item.codeValue}}" nzLabel="{{item.codeName}}"></nz-option> |
|
|
|
<nz-option *ngFor="let item of orderChildProductType" nzValue="{{item.codeValue}}" nzLabel="{{item.codeName}}"></nz-option> |
|
|
|
</nz-select> |
|
|
|
</nz-select> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div nz-col [nzSpan]="18"> |
|
|
|
<div nz-col [nzSpan]="6" [hidden]="!isCollapse"> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-label>创建时间</nz-form-label> |
|
|
|
<nz-form-label>产品名称</nz-form-label> |
|
|
|
<nz-form-control> |
|
|
|
<nz-form-control> |
|
|
|
<nz-range-picker nzSize="large" formControlName="createTimeArray" nzShowTime [nzFormat]="'yyyy/MM/dd HH:mm:ss'"></nz-range-picker> |
|
|
|
<input nzSize="large" nz-input formControlName="productName" placeholder="请输入" /> |
|
|
|
<nz-radio-group nzSize="large" nzButtonStyle="solid" formControlName="createTimeSelect" (ngModelChange)="createTimeInit()"> |
|
|
|
|
|
|
|
<label nz-radio-button *ngFor="let item of dateTypeSelect" nzValue="{{item.value}}">{{item.name}}</label> |
|
|
|
|
|
|
|
</nz-radio-group> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div nz-col [nzSpan]="24" class="search-area"> |
|
|
|
<div nz-col [nzSpan]="24" class="search-area"> |
|
|
|
<button nz-button [nzType]="'primary'" (click)="searchFormSubmit()">查询</button> |
|
|
|
<button nz-button [nzType]="'primary'" (click)="searchFormSubmit()">查询</button> |
|
|
|
<button nz-button (click)="searchFormReset()">重置</button> |
|
|
|
<button nz-button (click)="searchFormReset()">重置</button> |
|
|
|
|
|
|
|
<a class="collapse" (click)="isCollapse = !isCollapse"> |
|
|
|
|
|
|
|
更多查询条件 |
|
|
|
|
|
|
|
<i nz-icon [nzType]="!isCollapse ? 'down' : 'up'"></i> |
|
|
|
|
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</form> |
|
|
|
</form> |
|
|
|
|
|
|
|
|
|
|
|
<nz-table #basicTable |
|
|
|
<nz-table #basicTable |
|
|
|
[nzScroll]="{ x: '1500px' }" |
|
|
|
[nzScroll]="{ x: '2200px' }" |
|
|
|
[nzBordered]="true" |
|
|
|
[nzBordered]="true" |
|
|
|
[nzFrontPagination]="false" |
|
|
|
[nzFrontPagination]="false" |
|
|
|
[nzShowQuickJumper]="true" |
|
|
|
[nzShowQuickJumper]="true" |
|
|
@ -77,10 +107,11 @@ |
|
|
|
<th nzWidth="150px">申请单号</th> |
|
|
|
<th nzWidth="150px">申请单号</th> |
|
|
|
<th nzWidth="100px">申请类型</th> |
|
|
|
<th nzWidth="100px">申请类型</th> |
|
|
|
<th nzWidth="130px">用户手机号</th> |
|
|
|
<th nzWidth="130px">用户手机号</th> |
|
|
|
|
|
|
|
<th nzWidth="150px">交易单号</th> |
|
|
|
<th nzWidth="150px">商品单号</th> |
|
|
|
<th nzWidth="150px">商品单号</th> |
|
|
|
<th nzWidth="100px">产品类型</th> |
|
|
|
<th nzWidth="100px">产品类型</th> |
|
|
|
<th nzWidth="200px">产品名称</th> |
|
|
|
<th nzWidth="250px">产品名称</th> |
|
|
|
<th nzWidth="100px">产品规格</th> |
|
|
|
<th nzWidth="200px">产品规格</th> |
|
|
|
<th nzWidth="100px">申请数量</th> |
|
|
|
<th nzWidth="100px">申请数量</th> |
|
|
|
<th nzWidth="150px">申请时间</th> |
|
|
|
<th nzWidth="150px">申请时间</th> |
|
|
|
<th nzWidth="100px">状态</th> |
|
|
|
<th nzWidth="100px">状态</th> |
|
|
@ -92,6 +123,7 @@ |
|
|
|
<td>{{data.applyNo}}</td> |
|
|
|
<td>{{data.applyNo}}</td> |
|
|
|
<td>{{data.type | dictionary: 'ORDER_AFTER_SALES_APPLY_TYPE'}}</td> |
|
|
|
<td>{{data.type | dictionary: 'ORDER_AFTER_SALES_APPLY_TYPE'}}</td> |
|
|
|
<td>{{data.userPhone}}</td> |
|
|
|
<td>{{data.userPhone}}</td> |
|
|
|
|
|
|
|
<td>{{data.orderNo}}</td> |
|
|
|
<td>{{data.childOrderNo}}</td> |
|
|
|
<td>{{data.childOrderNo}}</td> |
|
|
|
<td>{{data.productType | dictionary: 'ORDER_CHILD_PRODUCT_TYPE'}}</td> |
|
|
|
<td>{{data.productType | dictionary: 'ORDER_CHILD_PRODUCT_TYPE'}}</td> |
|
|
|
<td>{{data.productName}}</td> |
|
|
|
<td>{{data.productName}}</td> |
|
|
|