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.
434 lines
21 KiB
434 lines
21 KiB
<!--面包屑-->
|
|
<app-breadcrumb></app-breadcrumb>
|
|
|
|
<!--条件搜索-->
|
|
<div class="inner-content">
|
|
<form nz-form [formGroup]="searchForm" (ngSubmit)="getRequest(true , searchForm.value)">
|
|
<div nz-row>
|
|
|
|
<div nz-col nzSpan="8">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6">商品名称</nz-form-label>
|
|
<nz-form-control [nzSpan]="16">
|
|
<input nz-input formControlName="title"/>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col nzSpan="8" *ngIf="'BTN_CONFIG_AWARD' | button">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6">商品标签</nz-form-label>
|
|
<nz-form-control [nzSpan]="16">
|
|
<input nz-input formControlName="goodsLabel"/>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
|
|
<div nz-col nzSpan="8">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6">状态</nz-form-label>
|
|
<nz-form-control [nzSpan]="16">
|
|
<nz-select nzShowSearch nzAllowClear formControlName="status" nzPlaceHolder="请选择状态">
|
|
<nz-option nzLabel="上架" [nzValue]="1"></nz-option>
|
|
<nz-option nzLabel="编辑中" [nzValue]="2"></nz-option>
|
|
</nz-select>
|
|
</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)="searchForm.reset()">
|
|
<i nz-icon nzType="reload" nzTheme="outline"></i>重置
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<div class="inner-content">
|
|
<span>共计 {{total}} 条数据</span>
|
|
<div class="operating-button">
|
|
<button nz-button nzType="primary" class="right-btn" (click)="getEdit()"><i nz-icon nzType="plus" nzTheme="outline"></i>添加</button>
|
|
</div>
|
|
<nz-table
|
|
class="table"
|
|
#ajaxTable
|
|
nzBordered
|
|
nzShowSizeChanger
|
|
[nzFrontPagination]="false"
|
|
[nzData]="requestData"
|
|
[nzLoading]="loading"
|
|
[nzTotal]="total"
|
|
[(nzPageIndex)]="pageNum"
|
|
[(nzPageSize)]="pageSize"
|
|
[nzScroll]="{ x: '1200px' }"
|
|
(nzPageIndexChange)="getRequest(false , searchForm.value)"
|
|
(nzPageSizeChange)="getRequest(false , searchForm.value)">
|
|
<thead nzSingleSort>
|
|
<tr>
|
|
<th nzWidth="80px">编号</th>
|
|
<th nzWidth="120px">商品名称</th>
|
|
<th *ngIf="'BTN_CONFIG_AWARD' | button" nzWidth="120px">商品标签</th>
|
|
<th nzWidth="80px">商品类型</th>
|
|
<th nzWidth="130px">列表图片</th>
|
|
<th nzWidth="120px">创建时间</th>
|
|
<th nzRight nzWidth="90px">状态</th>
|
|
<th nzRight nzWidth="100px">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of ajaxTable.data; let i = index">
|
|
<td>{{i + 1}}</td>
|
|
<td>{{data.name}}</td>
|
|
<td *ngIf="'BTN_CONFIG_AWARD' | button">{{data.goodsLabel }}</td>
|
|
<td>{{data.goodsTypeName }}</td>
|
|
<td>
|
|
<app-preview-image [previewImage] = data.listImg ></app-preview-image>
|
|
</td>
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd'}}</td>
|
|
<td nzRight="">{{data.status | goodsStatus}}</td>
|
|
<td nzRight class="table-td-operation">
|
|
<a *ngIf="data.status == 2" (click)="getEdit(data.id)">编辑</a>
|
|
<nz-divider *ngIf="data.status == 2" nzType="vertical"></nz-divider>
|
|
<a nz-dropdown [nzDropdownMenu]="menu">更多操作</a>
|
|
<nz-dropdown-menu #menu="nzDropdownMenu">
|
|
<ul nz-menu nzSelectable>
|
|
<li nz-menu-item> <a (click)="getSku(data.id)">查看规格</a></li>
|
|
<li *ngIf="data.status == 2" class="li-a" nz-menu-item><a (click)="configSku(data.id)">配置规格</a></li>
|
|
<li *ngIf="'BTN_CONFIG_AWARD' | button " nz-menu-item> <a (click)="getPresent(data.id)">赠送列表</a></li>
|
|
<li *ngIf="('BTN_CONFIG_AWARD' | button) && data.status == 2" class="li-a" nz-menu-item><a (click)="configPresent(data.id)">配置赠送规则</a></li>
|
|
<li *ngIf="data.status != 3" class="li-a" nz-menu-item><a (click)='goodsUpDown(data.id , data.status)'>{{data.status === 2 ? '申请上线': '禁用'}}</a></li>
|
|
<li class="li-a" *ngIf="data.status == 2" nz-menu-item><a (click)="deleteGoods(data.id)">删除</a></li>
|
|
</ul>
|
|
</nz-dropdown-menu>
|
|
</td>
|
|
</tbody>
|
|
</nz-table>
|
|
</div>
|
|
|
|
|
|
<nz-modal [(nzVisible)]="isVisibleEdit" nzTitle="编辑{{title}}" (nzOnCancel)="isVisibleEdit = false" (nzOnOk)="handleOkEdit()">
|
|
|
|
<nz-spin [nzSpinning]="isSpinningEdit">
|
|
<form nz-form [formGroup]="validateForm" class="login-form">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>商品名称</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入商品名称!">
|
|
<input nz-input formControlName="name" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>商品类型</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入商品类型!">
|
|
<nz-tree-select
|
|
style="width: 250px"
|
|
nzPlaceHolder="请选择商品类型"
|
|
formControlName="goodsType"
|
|
[nzDropdownMatchSelectWidth]="true"
|
|
[nzDropdownStyle]="{ 'max-height': '300px' }"
|
|
[nzNodes]="goodsTypeData"
|
|
>
|
|
</nz-tree-select>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item *ngIf="'BTN_CONFIG_AWARD' | button">
|
|
<nz-form-label [nzSpan]="6" >商品标签</nz-form-label>
|
|
<nz-form-control [nzSpan]="16">
|
|
<input nz-input formControlName="goodsLabel" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6">列表描述</nz-form-label>
|
|
<nz-form-control [nzSpan]="16">
|
|
<input nz-input formControlName="listDescribe" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>列表图</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择列表图!">
|
|
<nz-upload
|
|
nzAction="{{url.baseUrl}}/fileUpload/uploadfile"
|
|
nzListType="picture-card"
|
|
[(nzFileList)]="listImg"
|
|
[nzShowButton]="listImg.length < 1"
|
|
[nzPreview]="handlePreview"
|
|
>
|
|
<i nz-icon nzType="plus"></i>
|
|
<div class="ant-upload-text">上传图片</div>
|
|
</nz-upload>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>轮播图</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择轮播图!">
|
|
<nz-upload
|
|
nzAction="{{url.baseUrl}}/fileUpload/uploadfile"
|
|
nzListType="picture-card"
|
|
[(nzFileList)]="bannerImg"
|
|
[nzShowButton]="bannerImg.length < 6"
|
|
[nzPreview]="handlePreview"
|
|
>
|
|
<i nz-icon nzType="plus"></i>
|
|
<div class="ant-upload-text">上传图片</div>
|
|
</nz-upload>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>详情图</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择详情图!">
|
|
<nz-upload
|
|
nzAction="{{url.baseUrl}}/fileUpload/uploadfile"
|
|
nzListType="picture-card"
|
|
[(nzFileList)]="detailImg"
|
|
[nzShowButton]="detailImg.length < 7"
|
|
[nzPreview]="handlePreview"
|
|
>
|
|
<i nz-icon nzType="plus"></i>
|
|
<div class="ant-upload-text">上传图片</div>
|
|
</nz-upload>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
|
|
|
|
</form>
|
|
</nz-spin>
|
|
</nz-modal>
|
|
|
|
<nz-modal [(nzVisible)]="isVisibleSku" nzTitle="编辑{{title}}" (nzOnCancel)="isVisibleSku = false" (nzOnOk)="handleOkSku()">
|
|
|
|
<nz-spin [nzSpinning]="isSpinningEdit">
|
|
<form nz-form [formGroup]="validateFormSku" class="login-form">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>规格名称</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入规格名称!">
|
|
<input nz-input formControlName="name" />
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>价格</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入价格!">
|
|
<nz-input-number
|
|
style="width: 200px"
|
|
formControlName="price"
|
|
[nzMin]="0"
|
|
[nzMax]="100000"
|
|
[nzStep]="1"
|
|
[nzPrecision]="2"
|
|
nzPrecisionMode="cut"
|
|
nzPlaceHolder="请输入价格!"
|
|
[nzFormatter]="formatterPercent"
|
|
[nzParser]="parserPercent"
|
|
></nz-input-number>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>原价</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入原价!">
|
|
<nz-input-number
|
|
style="width: 200px"
|
|
formControlName="originalPrice"
|
|
[nzMin]="0"
|
|
[nzMax]="100000"
|
|
[nzStep]="1"
|
|
[nzPrecision]="2"
|
|
nzPrecisionMode="cut"
|
|
nzPlaceHolder="请输入原价!"
|
|
[nzFormatter]="formatterPercent"
|
|
[nzParser]="parserPercent"
|
|
></nz-input-number>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>库存</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入库存!">
|
|
<nz-input-number
|
|
style="width: 200px"
|
|
formControlName="stock"
|
|
[nzMin]="1"
|
|
[nzMax]="100000"
|
|
[nzStep]="1"
|
|
nzPlaceHolder="请输入库存!"
|
|
></nz-input-number>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>小图</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择小图!">
|
|
<nz-upload
|
|
nzAction="{{url.baseUrl}}/fileUpload/uploadfile"
|
|
nzListType="picture-card"
|
|
[(nzFileList)]="showImg"
|
|
[nzShowButton]="showImg.length < 1"
|
|
[nzPreview]="handlePreview"
|
|
>
|
|
<i nz-icon nzType="plus"></i>
|
|
<div class="ant-upload-text">上传图片</div>
|
|
</nz-upload>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>轮播图</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择轮播图!">
|
|
<nz-upload
|
|
nzAction="{{url.baseUrl}}/fileUpload/uploadfile"
|
|
nzListType="picture-card"
|
|
[(nzFileList)]="bannerSkuImg"
|
|
[nzShowButton]="bannerSkuImg.length < 4"
|
|
[nzPreview]="handlePreview"
|
|
>
|
|
<i nz-icon nzType="plus"></i>
|
|
<div class="ant-upload-text">上传图片</div>
|
|
</nz-upload>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</form>
|
|
</nz-spin>
|
|
</nz-modal>
|
|
|
|
|
|
<nz-modal [nzVisible]="previewVisible" [nzContent]="modalContent" [nzFooter]="null" (nzOnCancel)="previewVisible = false">
|
|
<ng-template #modalContent>
|
|
<img [src]="previewImage" [ngStyle]="{ width: '100%' }" />
|
|
</ng-template>
|
|
</nz-modal>
|
|
|
|
<!--sku列表-->
|
|
<nz-modal [(nzVisible)]="isVisibleSkuList" nzTitle="规格列表" (nzOnCancel)="isVisibleSkuList = false" [nzFooter]="null"
|
|
nzWidth="1000px" [nzBodyStyle]=" { padding: '20px 20px 30px 20px'}">
|
|
<nz-table [nzLoading]="loadingSku" nzBordered #skuDataList [nzData]="skuData" [nzHideOnSinglePage]="true">
|
|
<thead>
|
|
<tr>
|
|
<th nzWidth="80px">名称</th>
|
|
<th nzWidth="80px">图片</th>
|
|
<th nzWidth="80px">销售价格</th>
|
|
<th nzWidth="80px">售卖价格</th>
|
|
<th nzWidth="100px">创建时间</th>
|
|
<th nzWidth="100px">更新时间</th>
|
|
<th nzWidth="70px" nzRight="0px">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of skuDataList.data">
|
|
<td>{{data.name}}</td>
|
|
<td>
|
|
<app-preview-image [previewImage] = data.showImg ></app-preview-image>
|
|
</td>
|
|
<td>¥{{data.originalPrice}}</td>
|
|
<td>¥{{data.price}}</td>
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td>{{data.updateTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td nzRight="0px" class="table-td-operation">
|
|
<a (click)="configSku(data.goodsId , data.id)">编辑</a>
|
|
<nz-divider nzType="vertical"></nz-divider>
|
|
<a (click)="deleteSku(data.id)">删除</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</nz-table>
|
|
</nz-modal>
|
|
|
|
<nz-modal [(nzVisible)]="isVisiblePresent" nzTitle="配置奖励" (nzOnCancel)="isVisiblePresent = false" (nzOnOk)="handleOk()">
|
|
<div nz-row *ngFor="let control of listOfControl; let i = index">
|
|
<div nz-col class="gutter-row" [nzSpan]="20">
|
|
<div nz-col class="gutter-row" [nzSpan]="24">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>类型</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择类型">
|
|
<nz-select *ngIf="control.isEdit" nzShowSearch nzAllowClear [(ngModel)]="control.type" nzPlaceHolder="请选择类型">
|
|
<nz-option nzLabel="卡券" [nzValue]="1"></nz-option>
|
|
<nz-option nzLabel="优惠券" [nzValue]="2"></nz-option>
|
|
</nz-select>
|
|
<span *ngIf="!control.isEdit">{{control.type === 1 ? '卡券': '优惠券'}}</span>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col *ngIf="control.type == 2" class="gutter-row" [nzSpan]="24">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>代理商</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择代理商">
|
|
<nz-select *ngIf="control.isEdit" nzShowSearch nzAllowClear [(ngModel)]="control.agentId" (ngModelChange)="getSourceNameName($event , i , presentType.agentName)" nzPlaceHolder="请选择代理商状态">
|
|
<nz-option *ngFor="let item of agentData" nzLabel="{{item.agentName}}" [nzValue]="item.id"></nz-option>
|
|
</nz-select>
|
|
<span *ngIf="!control.isEdit">{{control.agentName}}</span>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
|
|
<div nz-col *ngIf="control.type == 2" class="gutter-row" [nzSpan]="24">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>优惠券</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择优惠券">
|
|
<nz-select *ngIf="control.isEdit" nzShowSearch nzAllowClear [(ngModel)]="control.sourceId" (ngModelChange)="getSourceNameName($event , i , presentType.discountName)" nzPlaceHolder="请选择优惠券">
|
|
<nz-option *ngFor="let item of discountList" nzLabel="{{item['highDiscount'].discountName}}" [nzValue]="item.id"></nz-option>
|
|
</nz-select>
|
|
<span *ngIf="!control.isEdit">{{control.sourceName}}</span>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col *ngIf="control.type !== 2" class="gutter-row" [nzSpan]="24">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>卡券</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请选择卡券">
|
|
<nz-select *ngIf="control.isEdit" nzShowSearch [(ngModel)]="control.sourceId"
|
|
(ngModelChange)="getSourceNameName($event , i , presentType.couponName)"
|
|
nzPlaceHolder="请选择卡券"
|
|
>
|
|
<nz-option *ngFor="let item of listOfOption" [nzLabel]="item['couponName']" [nzValue]="item['id']"></nz-option>
|
|
</nz-select>
|
|
<span *ngIf="!control.isEdit">{{control.sourceName}}</span>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
<div nz-col class="gutter-row" [nzSpan]="24">
|
|
<nz-form-item>
|
|
<nz-form-label [nzSpan]="6" nzRequired>奖励数量</nz-form-label>
|
|
<nz-form-control [nzSpan]="16" nzErrorTip="请输入奖励数量">
|
|
<input nz-input type="number" *ngIf="control.isEdit" [(ngModel)]="control.num" placeholder="请输入奖励数量" />
|
|
<span *ngIf="!control.isEdit">{{control.num}}</span>
|
|
</nz-form-control>
|
|
</nz-form-item>
|
|
</div>
|
|
</div>
|
|
<div nz-col class="gutter-row" [nzSpan]="4">
|
|
<button nz-button nzType="default" (click)="removeField(i , $event)"><i nz-icon nzType="delete" nzTheme="outline"></i>删除</button>
|
|
<br/>
|
|
<button class="btn" *ngIf="control.isEdit" nz-button nzType="primary" (click)="addField(i)"><i nz-icon nzType="plus" nzTheme="outline"></i>添加</button>
|
|
</div>
|
|
</div>
|
|
</nz-modal>
|
|
|
|
|
|
<nz-modal [(nzVisible)]="isVisiblePresentList" nzTitle="赠送列表列表" (nzOnCancel)="isVisiblePresentList = false" [nzFooter]="null"
|
|
nzWidth="1000px" [nzBodyStyle]=" { padding: '20px 20px 30px 20px'}">
|
|
<nz-table [nzLoading]="loadingSku" nzBordered #presentDataList [nzData]="presentData" [nzHideOnSinglePage]="true">
|
|
<thead>
|
|
<tr>
|
|
<th nzWidth="80px">类型</th>
|
|
<th nzWidth="120px">赠送内容</th>
|
|
<th nzWidth="40px">数量</th>
|
|
<th nzWidth="100px">创建时间</th>
|
|
<th nzWidth="100px">更新时间</th>
|
|
<th nzWidth="50px" nzRight="0px">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let data of presentDataList.data">
|
|
<td>{{data.type === 1 ? '卡券': '优惠券'}}</td>
|
|
<td>{{data.sourceName}}</td>
|
|
<td>{{data.num}}</td>
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td>{{data.updateTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
<td nzRight="0px" class="table-td-operation">
|
|
<!-- <a (click)="configSku(data.goodsId , data.id)">编辑</a>-->
|
|
<!-- <nz-divider nzType="vertical"></nz-divider>-->
|
|
<a (click)="deletePresent(data.id)">删除</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</nz-table>
|
|
</nz-modal>
|
|
|