pull/1/head
袁野 4 years ago
parent 596ff57f2d
commit e0cfb4a913
  1. 8
      src/app/admin/audit/audit-coupon/audit-coupon.component.html
  2. 8
      src/app/admin/audit/audit-coupon/audit-coupon.component.ts
  3. 8
      src/app/admin/coupon/coupon-edit/coupon-edit.component.html
  4. 1
      src/app/admin/coupon/coupon-edit/coupon-edit.component.ts
  5. 58
      src/app/admin/order/order-list/order-list.component.html
  6. 4
      src/app/admin/order/order-list/order-list.component.ts
  7. 10
      src/app/pipes/order/order-coupon-status.pipe.ts
  8. 4
      src/app/services/order.service.ts

@ -86,9 +86,9 @@
<td nzRight="0px" class="table-td-operation"> <td nzRight="0px" class="table-td-operation">
<a (click)="getDetail(data.id)"><i nz-icon [nzIconfont]="'icon-xiangqing'" nz-tooltip="审核详情"></i></a> <a (click)="getDetail(data.id)"><i nz-icon [nzIconfont]="'icon-xiangqing'" nz-tooltip="审核详情"></i></a>
<nz-divider *ngIf="data['status'] === 1" nzType="vertical"></nz-divider> <nz-divider *ngIf="data['status'] === 1" nzType="vertical"></nz-divider>
<a (click)="approveProcessed(3)" *ngIf="data['status'] === 1"><i nz-icon nzType="check-circle" nzTheme="outline" nz-tooltip="通过"></i></a> <a (click)="approveProcessed(3 , data.id)" *ngIf="data['status'] === 1"><i nz-icon nzType="check-circle" nzTheme="outline" nz-tooltip="通过"></i></a>
<nz-divider *ngIf="data['status'] === 1" nzType="vertical"></nz-divider> <nz-divider *ngIf="data['status'] === 1" nzType="vertical"></nz-divider>
<a (click)="approveProcessed(2)" *ngIf="data['status'] === 1"><i nz-icon nzType="stop" nz-tooltip="驳回" nzTheme="outline"></i></a> <a (click)="approveProcessed(2 , data.id)" *ngIf="data['status'] === 1"><i nz-icon nzType="stop" nz-tooltip="驳回" nzTheme="outline"></i></a>
</td> </td>
</tbody> </tbody>
</nz-table> </nz-table>
@ -115,8 +115,8 @@
</ng-container> </ng-container>
<div *nzModalFooter> <div *nzModalFooter>
<button *ngIf="data['approve']['status'] !== 1" nz-button nzType="default" (click)="handleCancel()">关闭</button> <button *ngIf="data['approve']['status'] !== 1" nz-button nzType="default" (click)="handleCancel()">关闭</button>
<button *ngIf="data['approve']['status'] === 1" nz-button nzType="default" (click)="approveProcessed(2)">审核驳回</button> <button *ngIf="data['approve']['status'] === 1" nz-button nzType="default" (click)="approveProcessed(2 , this.id)">审核驳回</button>
<button *ngIf="data['approve']['status'] === 1" nz-button nzType="primary" (click)="approveProcessed(3)">审核通过</button> <button *ngIf="data['approve']['status'] === 1" nz-button nzType="primary" (click)="approveProcessed(3 , this.id)">审核通过</button>
</div> </div>
</nz-modal> </nz-modal>

@ -25,6 +25,7 @@ export class AuditCouponComponent implements OnInit {
approve: {}, approve: {},
object: {} object: {}
}; };
constructor( constructor(
private form: FormBuilder, private form: FormBuilder,
private audit: AuditService, private audit: AuditService,
@ -91,16 +92,17 @@ export class AuditCouponComponent implements OnInit {
this.isVisible = false; this.isVisible = false;
} }
public approveProcessed(statusD: number): void { public approveProcessed(statusD: number, id: number): void {
this.id = id;
const p = { const p = {
approveId: this.id, approveId: this.id,
status: statusD, status: statusD,
remarks: '', remarks: '',
}; };
this.common.showConfirm('是否确定' , r => { this.common.showConfirm('是否确定', r => {
if (r) { if (r) {
this.audit.approveProcessed(p , data => { this.audit.approveProcessed(p, data => {
if (data['return_code'] === '000000') { if (data['return_code'] === '000000') {
this.isVisible = false; this.isVisible = false;
this.getRequest(true, this.searchForm.value); this.getRequest(true, this.searchForm.value);

@ -53,14 +53,6 @@
</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 [nzFor]="'couponPrice'" nzRequired>卡券面值</nz-form-label>
<nz-form-control nzErrorTip="请输入卡券面值!">
<input nz-input placeholder="请输入卡券面值..." [formControlName]="'couponPrice'" id="'couponPrice'" />
</nz-form-control>
</nz-form-item>
</div>
<div nz-col [nzSpan]="8"> <div nz-col [nzSpan]="8">
<nz-form-item> <nz-form-item>
<nz-form-label [nzFor]="'salesPrice'" nzRequired>销售价格</nz-form-label> <nz-form-label [nzFor]="'salesPrice'" nzRequired>销售价格</nz-form-label>

@ -69,7 +69,6 @@ export class CouponEditComponent implements OnInit {
}); });
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
couponName: [null, [Validators.required]], couponName: [null, [Validators.required]],
couponPrice: [null, [Validators.required]],
couponDesc: [null], couponDesc: [null],
couponType: [null, [Validators.required]], couponType: [null, [Validators.required]],
salesEndTime: [null, [Validators.required]], salesEndTime: [null, [Validators.required]],

@ -8,28 +8,30 @@
<div nz-row> <div nz-row>
<div nz-col nzSpan="6"> <div nz-col nzSpan="6">
<nz-form-item> <nz-form-item>
<nz-form-label [nzSpan]="6">销售码</nz-form-label> <nz-form-label [nzSpan]="6">订单号</nz-form-label>
<nz-form-control [nzSpan]="16"> <nz-form-control [nzSpan]="16">
<input nz-input formControlName="salesCode"/> <input nz-input formControlName="orderNo"/>
</nz-form-control>
</nz-form-item>
</div>
<div nz-col nzSpan="6">
<nz-form-item>
<nz-form-label [nzSpan]="6">客户手机号</nz-form-label>
<nz-form-control [nzSpan]="16">
<input nz-input formControlName="phone"/>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
</div> </div>
<!-- <div nz-col nzSpan="6">-->
<!-- <nz-form-item>-->
<!-- <nz-form-label [nzSpan]="6">商户名称</nz-form-label>-->
<!-- <nz-form-control [nzSpan]="16">-->
<!-- <input nz-input formControlName="merchantName"/>-->
<!-- </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 [nzSpan]="6">状态</nz-form-label> <nz-form-label [nzSpan]="6">状态</nz-form-label>
<nz-form-control [nzSpan]="16"> <nz-form-control [nzSpan]="16">
<nz-select nzShowSearch nzAllowClear nzPlaceHolder="请选择订单状态" formControlName="status"> <nz-select nzShowSearch nzAllowClear nzPlaceHolder="请选择订单状态" formControlName="status">
<nz-option nzLabel="待销售" nzValue="1"></nz-option> <nz-option nzLabel="待支付" nzValue="1"></nz-option>
<nz-option nzLabel="未使用" nzValue="2"></nz-option> <nz-option nzLabel="已支付" nzValue="2"></nz-option>
<nz-option nzLabel="已使用" nzValue="3"></nz-option> <nz-option nzLabel="已完成" nzValue="3"></nz-option>
<nz-option nzLabel="已退款" nzValue="4"></nz-option>
<nz-option nzLabel="已取消" nzValue="5"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -64,21 +66,33 @@
<thead nzSingleSort> <thead nzSingleSort>
<tr> <tr>
<th nzWidth="50px">编号</th> <th nzWidth="50px">编号</th>
<th nzWidth="80px">销售码</th> <th nzWidth="180px">订单号</th>
<th nzWidth="80px">销售截止时间</th> <th nzWidth="180px">支付流水号</th>
<th nzWidth="100px">使用截止时间</th> <th nzWidth="120px">客户名称</th>
<th nzWidth="100px">创建时间</th> <th nzWidth="130px">客户电话</th>
<th nzWidth="50px">状态</th> <th nzWidth="100px">支付模式</th>
<th nzWidth="100px">支付方式</th>
<th nzWidth="100px">支付金额</th>
<th nzWidth="140px">支付时间</th>
<th nzWidth="140px">取消时间</th>
<th nzWidth="140px">创建时间</th>
<th nzWidth="80px">状态</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let data of ajaxTable.data; let i = index"> <tr *ngFor="let data of ajaxTable.data; let i = index">
<td>{{i+1}}</td> <td>{{i+1}}</td>
<td>{{data.salesCode}}</td> <td>{{data.orderNo}}</td>
<td>{{data.paySerialNo == null ? '暂无': data.paySerialNo}}</td>
<td>{{data.memName == null ? '暂无': data.memName}}</td>
<td>{{data.memPhone == null ? '暂无': data.memPhone}}</td>
<td>{{data.payModel == null ? '暂无': data.payModel}}</td>
<td>{{data.payType == null ? '暂无': data.payType}}</td>
<td>{{data.payPrice == null ? '暂无': data.payPrice}}</td>
<td>{{data.payTime | date: 'yyyy-MM-dd HH:mm'}}</td>
<td>{{data.cancelTime | date: 'yyyy-MM-dd HH:mm'}}</td>
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td> <td>{{data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td>
<td>{{data.salesEndTime | date: 'yyyy-MM-dd HH:mm'}}</td> <td>{{data.orderStatus | orderCouponStatus}}</td>
<td>{{data.useEndTime | date: 'yyyy-MM-dd HH:mm'}}</td>
<td>{{data.status | orderCouponStatus}}</td>
</tbody> </tbody>
</nz-table> </nz-table>
</div> </div>

@ -39,8 +39,8 @@ export class OrderListComponent implements OnInit {
public init(): void { public init(): void {
this.searchForm = this.form.group({ this.searchForm = this.form.group({
couponId: [null], phone: [null],
salesCode: [null], orderNo: [null],
status: [null], status: [null],
}); });
this.getRequest(true, this.searchForm.value); this.getRequest(true, this.searchForm.value);

@ -8,11 +8,15 @@ export class OrderCouponStatusPipe implements PipeTransform {
transform(value: number): string { transform(value: number): string {
switch (value) { switch (value) {
case 1: case 1:
return '待销售'; return '待支付';
case 2: case 2:
return '未使用'; return '已支付';
case 3: case 3:
return '已使用'; return '已完成';
case 4:
return '已退款';
case 5:
return '已取消';
} }
} }
} }

@ -14,13 +14,13 @@ export class OrderService {
) { } ) { }
/** /**
* *
* *
* @param paramsObject * @param paramsObject
* @param callBack * @param callBack
*/ */
public getOrderCouponList(paramsObject: object, callBack) { public getOrderCouponList(paramsObject: object, callBack) {
this.http.get(environment.baseUrl + 'highOrder/getOrderCouponList?' + this.common.getWhereCondition(paramsObject)).subscribe(data => { this.http.get(environment.baseUrl + 'highOrder/getOrderList?' + this.common.getWhereCondition(paramsObject)).subscribe(data => {
callBack(data); callBack(data);
}); });
} }

Loading…
Cancel
Save