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.
192 lines
9.6 KiB
192 lines
9.6 KiB
<form nz-form [formGroup]="searchForm" class="search_form" [nzLayout]="'vertical'">
|
|
<div nz-row [nzGutter]="24">
|
|
<div nz-col [nzSpan]="6">
|
|
<nz-form-item>
|
|
<nz-form-label>审核内容名称</nz-form-label>
|
|
<nz-form-control>
|
|
<input nzSize="large" nz-input formControlName="submitObjectName" placeholder="请输入" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col [nzSpan]="6">
|
|
<nz-form-item>
|
|
<nz-form-label>审核提交人</nz-form-label>
|
|
<nz-form-control>
|
|
<input nzSize="large" nz-input formControlName="submitOpName" placeholder="请输入" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
|
|
<div nz-col [nzSpan]="6">
|
|
<nz-form-item>
|
|
<nz-form-label>审核状态</nz-form-label>
|
|
<nz-form-control>
|
|
<nz-select nzSize="large" nzShowSearch nzAllowClear nzPlaceHolder="请选择" formControlName="status">
|
|
<nz-option nzLabel="驳回" nzValue="0"></nz-option>
|
|
<nz-option nzLabel="1通过" nzValue="1"></nz-option>
|
|
<nz-option nzLabel="待审批" nzValue="2"></nz-option>
|
|
</nz-select>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col [nzSpan]="6" class="search-area">
|
|
<button nz-button [nzType]="'primary'" (click)="getRequest(true)">查询</button>
|
|
<button nz-button (click)="searchForm.reset()">重置</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<nz-table #basicTable
|
|
[nzBordered]="true"
|
|
[nzFrontPagination]="false"
|
|
[nzShowQuickJumper]="true"
|
|
[nzShowTotal]="totalTemplate"
|
|
[(nzPageIndex)]="tablePageNum"
|
|
(nzPageIndexChange)="getRequest(false)"
|
|
[nzTotal]="tableData.total"
|
|
[nzData]="tableData.list" >
|
|
<thead>
|
|
<tr>
|
|
<th>审核对象</th>
|
|
<th>提交人名称</th>
|
|
<th>审核流水号</th>
|
|
<th>创建时间</th>
|
|
<th>更新时间</th>
|
|
<th>状态</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of basicTable.data">
|
|
<td>{{data.submitObjectName}}</td>
|
|
<td>{{data.submitOpName}}</td>
|
|
<td>{{data.auditSerialNo}}</td>
|
|
<td>{{ data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td>{{ data.updateTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td>{{data.status | auditStatus}}</td>
|
|
<td>
|
|
<a (click)="showDetail(data.id)">详情</a>
|
|
<nz-divider *ngIf="data.status == 2" nzType="vertical"></nz-divider>
|
|
<a *ngIf="data.status == 2" nz-dropdown [nzDropdownMenu]="menu">
|
|
更多
|
|
<span nz-icon nzType="down"></span>
|
|
</a>
|
|
<nz-dropdown-menu #menu="nzDropdownMenu">
|
|
<ul nz-menu nzSelectable>
|
|
<li nz-menu-item>
|
|
<a (click)="passOrOverrule(data.id , 1)">通过</a>
|
|
</li>
|
|
<li nz-menu-item nzDanger>
|
|
<a (click)="passOrOverrule(data.id , 0)">驳回</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</nz-dropdown-menu>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<ng-template #totalTemplate let-total>总计 {{ total }} 条</ng-template>
|
|
|
|
<!--添加弹出框-->
|
|
<nz-modal [nzWidth]="1400" [(nzVisible)]="isVisibleDetail" nzTitle="查看详情" (nzOnCancel)="isVisibleDetail = false">
|
|
<ng-container *nzModalContent>
|
|
<nz-descriptions nzTitle="产品详情" nzBordered>
|
|
<nz-descriptions-item nzTitle="审核流水号">{{ auditDetail.auditSerialNo }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="提交人">{{ auditDetail.submitOpName }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="审核人">{{ auditDetail.auditOpName }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="产品名称">{{ auditDetail.submitObjectName }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="分类">{{ auditDetail['goodsModel'].goodsTypeName + "/" + auditDetail['goodsModel'].goodsTypeParentName}}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="品牌">{{ auditDetail['goodsModel'].goodsBrandName }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="商品类型">{{ auditDetail['goodsModel'].type == 1 ? '实物商品' : '虚拟商品' }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="商品说明" [nzSpan]="2">{{ auditDetail['goodsModel'].goodsExplain}}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="创建时间">{{ auditDetail.createTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="商品标签" [nzSpan]="2">{{ auditDetail['goodsModel'].goodsLabel}}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="更新时间">{{ auditDetail.updateTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="审批批注" [nzSpan]="2">{{ auditDetail.remarks}}</nz-descriptions-item>
|
|
<nz-descriptions-item nzTitle="状态" [nzSpan]="3">
|
|
<nz-badge *ngIf="auditDetail.status == 0" nzStatus="error" nzText="{{auditDetail.status | auditStatus}}"></nz-badge>
|
|
<nz-badge *ngIf="auditDetail.status == 1" nzStatus="success" nzText="{{auditDetail.status | auditStatus}}"></nz-badge>
|
|
<nz-badge *ngIf="auditDetail.status == 2" nzStatus="processing" nzText="{{auditDetail.status | auditStatus}}"></nz-badge>
|
|
</nz-descriptions-item>
|
|
<nz-descriptions-item [nzSpan]="3" nzTitle="列表图">
|
|
<nz-image-group>
|
|
<img nz-image width="80px" *ngFor="let item of auditDetail['goodsModel']['listImg'].split(',') " [nzFallback]="fallbackImg" nzSrc="{{imageUrl + item}}" alt="" />
|
|
</nz-image-group>
|
|
</nz-descriptions-item>
|
|
<nz-descriptions-item [nzSpan]="3" nzTitle="轮播图">
|
|
<nz-image-group>
|
|
<img nz-image width="80px" style="margin-left: 10px" *ngFor="let item of auditDetail['goodsModel']['bannerImg'].split(',') " [nzFallback]="fallbackImg" nzSrc="{{imageUrl + item}}" alt="" />
|
|
</nz-image-group>
|
|
</nz-descriptions-item>
|
|
<nz-descriptions-item [nzSpan]="3" nzTitle="详情图">
|
|
<nz-image-group>
|
|
<img nz-image width="80px" style="margin-left: 10px" *ngFor="let item of auditDetail['goodsModel']['detailImg'].split(',') " [nzFallback]="fallbackImg" nzSrc="{{imageUrl + item}}" alt="" />
|
|
</nz-image-group>
|
|
</nz-descriptions-item>
|
|
</nz-descriptions>
|
|
<h2>规格列表</h2>
|
|
<nz-table [nzScroll]="{ x: '1980px' }" [nzBordered]="true" #basicTable [nzData]="auditDetail['goodsModel']['goodsModelSpecs']">
|
|
<thead>
|
|
<tr>
|
|
<th nzLeft rowspan="2">规格名称</th>
|
|
<th colspan="2">价格(RMB)</th>
|
|
<th rowspan="2">图片</th>
|
|
<!-- <th rowspan="2">限购(个)</th>-->
|
|
<th rowspan="2">库存(个)</th>
|
|
<th colspan="2">时间</th>
|
|
<th colspan="7" *ngIf="auditDetail['goodsModel']?.type == 2">虚拟产品</th>
|
|
</tr>
|
|
<tr>
|
|
<th rowspan="1">售价</th>
|
|
<th rowspan="1">原价</th>
|
|
<th rowspan="1">销售截止时间</th>
|
|
<th rowspan="1">创建时间</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">卡密</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">归库天数</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">类型</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">产品来源</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">跳转类型</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">跳转地址</th>
|
|
<th *ngIf="auditDetail['goodsModel']?.type == 2" rowspan="1">应用ID</th>
|
|
</tr>
|
|
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of basicTable.data">
|
|
<td nzLeft>{{data.name}}</td>
|
|
<td>
|
|
<span style="font-size: 24px;" nz-typography nzType="danger">¥{{data.salePrice}}</span>
|
|
</td>
|
|
<td>
|
|
<span nz-typography nzType="secondary">¥{{data.originalPrice}}</span>
|
|
</td>
|
|
<td>
|
|
<img nz-image width="60px" height="60px" nzSrc="{{imageUrl + data.showImg }}" [nzFallback]="fallbackImg" alt="" />
|
|
</td>
|
|
<!-- <td>{{data.purLimit}}</td>-->
|
|
<td>{{data.stock}}</td>
|
|
<td>{{ data.salesEndTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td>{{ data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.key}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.validDay}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.type == 1 ? '内部虚拟商品' : '外部虚拟产品'}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.source | dictionary: 'GOODS_VPD_SOURCE'}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.jumpType == 1 ? '小程序' : 'H5'}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.jumpUrl}}</td>
|
|
<td *ngIf="auditDetail['goodsModel']?.type == 2">{{data.appid}}</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</nz-table>
|
|
</ng-container>
|
|
<div *nzModalFooter>
|
|
<button *ngIf="auditDetail.status == 2" nz-button nzType="default" (click)="passOrOverrule(auditDetail.id , 0)">驳回</button>
|
|
<button *ngIf="auditDetail.status == 2" nz-button nzType="primary" (click)="passOrOverrule(auditDetail.id , 1)">通过</button>
|
|
</div>
|
|
</nz-modal>
|
|
|
|
<nz-modal [(nzVisible)]="isVisibleAudit" nzTitle="审批" (nzOnCancel)="isVisibleAudit = false" (nzOnOk)="postAuditMsg()">
|
|
<ng-container *nzModalContent>
|
|
<textarea rows="4" nz-input [(ngModel)]="remarks"></textarea>
|
|
</ng-container>
|
|
</nz-modal>
|
|
|