master
parent
6aa02cc57b
commit
a413dc9ce4
@ -0,0 +1,274 @@ |
|||||||
|
<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="goodsName" 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="logisticsNo" 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="orderNo" 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="childOrderNo" 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="userPhone" 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-tree-select |
||||||
|
nzPlaceHolder="请选择" |
||||||
|
formControlName="goodsType" |
||||||
|
[nzNodes]="nodes" |
||||||
|
nzShowSearch |
||||||
|
></nz-tree-select> |
||||||
|
</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="goodsBrand"> |
||||||
|
<nz-option *ngFor="let item of nodesBrand" nzLabel="{{item['title']}}" nzValue="{{item['id']}}"></nz-option> |
||||||
|
</nz-select> |
||||||
|
</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="logisticsStatus"> |
||||||
|
<nz-option *ngFor="let item of logisticsStatus" nzLabel="{{item['name']}}" nzValue="{{item['key']}}"></nz-option> |
||||||
|
</nz-select> |
||||||
|
</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="payType"> |
||||||
|
<nz-option *ngFor="let item of orderPayType" nzLabel="{{item['name']}}" nzValue="{{item['key']}}"></nz-option> |
||||||
|
</nz-select> |
||||||
|
</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-range-picker nzSize="large" formControlName="createTimeArray" [nzFormat]="'yyyy/MM/dd'"></nz-range-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div nz-col [nzSpan]="24" class="search-area"> |
||||||
|
<button nz-button [nzType]="'primary'" (click)="getRequest()">查询</button> |
||||||
|
<button nz-button (click)="reset()">重置</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
|
||||||
|
<nz-table #basicTable |
||||||
|
[nzScroll]="{ x: '1980px' }" |
||||||
|
[nzBordered]="true" |
||||||
|
[nzFrontPagination]="false" |
||||||
|
[nzShowQuickJumper]="true" |
||||||
|
[nzShowTotal]="totalTemplate" |
||||||
|
[(nzPageIndex)]="tablePageNum" |
||||||
|
(nzPageIndexChange)="getRequest(false)" |
||||||
|
[nzTotal]="tableData.total" |
||||||
|
[nzData]="tableData.list" > |
||||||
|
<thead> |
||||||
|
<tr> |
||||||
|
<th nzWidth="200px">商品名称</th> |
||||||
|
<th nzWidth="100px">商户名称</th> |
||||||
|
<th nzWidth="100px">商品图片</th> |
||||||
|
<th nzWidth="100px">商品分类</th> |
||||||
|
<th nzWidth="100px">商品品牌</th> |
||||||
|
<th nzWidth="100px">用户手机号</th> |
||||||
|
<th nzWidth="100px">订单号</th> |
||||||
|
<th nzWidth="100px">子订单号</th> |
||||||
|
<th nzWidth="100px">物流单号</th> |
||||||
|
<th nzWidth="50px">创建时间</th> |
||||||
|
<th nzWidth="50px">更新时间</th> |
||||||
|
<th nzRight nzWidth="60px">支付类型</th> |
||||||
|
<th nzRight nzWidth="60px">支付状态</th> |
||||||
|
<th nzRight nzWidth="60px">物流状态</th> |
||||||
|
<th nzRight nzWidth="80px">操作</th> |
||||||
|
</tr> |
||||||
|
</thead> |
||||||
|
<tbody> |
||||||
|
<tr *ngFor="let data of basicTable.data"> |
||||||
|
<td>{{data.goodsName}} - {{data.goodsSpecsName}}</td> |
||||||
|
<td>{{data.merName}}</td> |
||||||
|
<td> |
||||||
|
<img nz-image width="60px" height="60px" nzSrc="{{imageUrl + data.img }}" [nzFallback]="fallbackImg" alt="" /> |
||||||
|
</td> |
||||||
|
<td>{{data.goodsTypeName}}</td> |
||||||
|
<td>{{data.goodsBrandName}}</td> |
||||||
|
<td>{{data.userPhone}}</td> |
||||||
|
<td>{{data.orderNo}}</td> |
||||||
|
<td>{{data.childOrderNo}}</td> |
||||||
|
<td>{{data.logisticsNo}}</td> |
||||||
|
<td>{{ data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
||||||
|
<td>{{ data.updateTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
||||||
|
<td nzRight> |
||||||
|
<span style="font-size: 30px;" nz-icon [nzIconfont]="data.payType | payType"></span> |
||||||
|
</td> |
||||||
|
<td nzRight> |
||||||
|
{{data.status | orderChildStatus}} |
||||||
|
</td> |
||||||
|
<td nzRight> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'DELIVERING'" nzColor="cyan" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'TRANSPORT'" nzColor="lime" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'AGENT_SIGN'" nzStatus="success" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'SIGN'" nzStatus="success" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'ACCEPT'" nzStatus="processing" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'FAILED'" nzStatus="error" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="data?.logisticsStatus == 'WAIT_ACCEPT'" nzStatus="default" nzText="{{data.logisticsStatusDesc}}"></nz-badge> |
||||||
|
</td> |
||||||
|
<td nzRight> |
||||||
|
<a (click)="showDetail(data)">详情</a> |
||||||
|
<nz-divider nzType="vertical"></nz-divider> |
||||||
|
<a nz-dropdown [nzDropdownMenu]="menu"> |
||||||
|
更多 |
||||||
|
<span nz-icon nzType="down"></span> |
||||||
|
</a> |
||||||
|
<nz-dropdown-menu #menu="nzDropdownMenu"> |
||||||
|
<ul nz-menu nzSelectable> |
||||||
|
<li nz-menu-item (click)="getLogisticsNo(data.id)"><a>录入物流编码</a></li> |
||||||
|
<li nz-menu-item (click)="showLogisticsNo(data.id)"><a>查看物流</a></li> |
||||||
|
</ul> |
||||||
|
</nz-dropdown-menu> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</tbody> |
||||||
|
<ng-template #totalTemplate let-total>总计 {{ total }} 条</ng-template> |
||||||
|
|
||||||
|
<nz-modal [nzWidth]="1400" [(nzVisible)]="orderDetailModal" nzTitle="订单详情" (nzOnCancel)="orderDetailModal = false" (nzOnOk)="orderDetailModal = false"> |
||||||
|
<ng-container *nzModalContent> |
||||||
|
|
||||||
|
<nz-tabset nzType="card"> |
||||||
|
<nz-tab nzTitle="订单信息"> |
||||||
|
<nz-descriptions nzTitle="订单信息" nzBordered> |
||||||
|
<nz-descriptions-item nzTitle="商品名称">{{orderGoodsData?.goodsName}} - {{orderGoodsData?.goodsSpecsName}}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="用户手机号">{{ orderGoodsData?.userPhone }}</nz-descriptions-item>//. |
||||||
|
0 <nz-descriptions-item nzTitle="商品分类">{{ orderGoodsData?.goodsTypeName }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="商品品牌">{{ orderGoodsData?.goodsBrandName }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="商品价格">{{ orderGoodsData?.goodsSpecsOriginalPrice }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="商品数量">{{ orderGoodsData?.goodsCount }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="图片" [nzSpan]="3"> |
||||||
|
<nz-image-group> |
||||||
|
<img nz-image width="80px" [nzFallback]="fallbackImg" nzSrc="{{imageUrl + orderGoodsData.img }}" alt="" /> |
||||||
|
</nz-image-group> |
||||||
|
</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="物流状态" [nzSpan]="3"> |
||||||
|
<span *ngIf="orderGoodsData?.logisticsStatusDesc != null"> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'DELIVERING'" nzColor="cyan" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'TRANSPORT'" nzColor="lime" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'AGENT_SIGN'" nzStatus="success" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'SIGN'" nzStatus="success" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'ACCEPT'" nzStatus="processing" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'FAILED'" nzStatus="error" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
<nz-badge *ngIf="orderGoodsData?.logisticsStatus == 'WAIT_ACCEPT'" nzStatus="default" nzText="{{orderGoodsData.logisticsStatusDesc}}"></nz-badge> |
||||||
|
</span> |
||||||
|
</nz-descriptions-item> |
||||||
|
</nz-descriptions> |
||||||
|
</nz-tab> |
||||||
|
<nz-tab nzTitle="支付信息"> |
||||||
|
<nz-descriptions nzTitle="支付信息" nzBordered> |
||||||
|
<nz-descriptions-item nzTitle="订单号">{{ orderGoodsData?.orderNo }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="子订单号" [nzSpan]="2">{{ orderGoodsData?.childOrderNo }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="支付流水号" [nzSpan]="3">{{ orderGoodsData?.paySerialNo }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="商品总金额" [nzSpan]="3">{{ orderGoodsData?.totalPrice }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="优惠券优惠金额" [nzSpan]="3">{{ orderGoodsData?.couponDiscountPrice }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="积分抵扣优惠金额" [nzSpan]="3">{{ orderGoodsData?.integralDiscountPrice }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="总优惠金额(优惠券优惠金额 + 积分抵扣)" [nzSpan]="3">{{ orderGoodsData?.totalDeductionPrice }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="实付金额" [nzSpan]="3">{{ orderGoodsData?.payRealPrice }}</nz-descriptions-item> |
||||||
|
</nz-descriptions> |
||||||
|
</nz-tab> |
||||||
|
<nz-tab nzTitle="订单时间"> |
||||||
|
<nz-descriptions nzTitle="订单时间" nzBordered> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.createTime != null" nzTitle="创建时间">{{ orderGoodsData?.createTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.payTime != null" nzTitle="支付时间">{{ orderGoodsData?.payTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.cancelTime != null" nzTitle="取消时间">{{ orderGoodsData?.cancelTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.refundTime != null" nzTitle="退款时间">{{ orderGoodsData?.refundTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.finishTime != null" nzTitle="完成时间">{{ orderGoodsData?.finishTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item *ngIf="orderGoodsData?.updateTime != null" nzTitle="更新时间">{{ orderGoodsData?.updateTime | date: 'yyyy-MM-dd HH:mm' }}</nz-descriptions-item> |
||||||
|
</nz-descriptions> |
||||||
|
</nz-tab> |
||||||
|
<nz-tab nzTitle="发货信息"> |
||||||
|
<nz-descriptions nzTitle="发货信息" nzBordered> |
||||||
|
<nz-descriptions-item nzTitle="收货人">{{deliveryAddress?.consignee}}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="收货电话">{{ deliveryAddress?.phone }}</nz-descriptions-item> |
||||||
|
<nz-descriptions-item nzTitle="发货信息" [nzSpan]="3">{{ deliveryAddress?.regionName }} -{{deliveryAddress?.consignee}} -{{ deliveryAddress?.phone }} -{{ deliveryAddress?.address }}</nz-descriptions-item> |
||||||
|
|
||||||
|
</nz-descriptions> |
||||||
|
</nz-tab> |
||||||
|
</nz-tabset> |
||||||
|
|
||||||
|
</ng-container> |
||||||
|
</nz-modal> |
||||||
|
|
||||||
|
<nz-modal [(nzVisible)]="isVisible" nzTitle="新增物流单号" (nzOnCancel)="isVisible = false" (nzOnOk)="handleOk()"> |
||||||
|
<ng-container *nzModalContent> |
||||||
|
<div nz-row> |
||||||
|
<div nz-col nzSpan="20"> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label [nzSpan]="6">物流单号</nz-form-label> |
||||||
|
<nz-form-control [nzSpan]="16"> |
||||||
|
<input nz-input [(ngModel)]="logisticsNo"/> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</ng-container> |
||||||
|
</nz-modal> |
||||||
|
|
||||||
|
<nz-modal [(nzVisible)]="orderDetailModalChild" nzTitle="物流详情" (nzOnCancel)="orderDetailModalChild = false" [nzFooter]="null" |
||||||
|
nzWidth="1000px" [nzBodyStyle]=" { padding: '20px 20px 30px 20px'}"> |
||||||
|
<ng-container *nzModalContent> |
||||||
|
<nz-spin [nzSpinning]="orderDetailModalLoading"> |
||||||
|
<nz-timeline [nzReverse]="true" *ngIf="logisticsTraceDetails !== null"> |
||||||
|
<nz-timeline-item *ngFor="let item of logisticsTraceDetails;let i = index" [nzColor]="i===logisticsTraceDetails.length -1?'green':'gray'"> |
||||||
|
<p [ngClass]="{'fontColorBlue': i===logisticsTraceDetails.length -1 }">{{item['desc']}}</p> |
||||||
|
<p [ngClass]="{'fontColorBlue': i===logisticsTraceDetails.length -1 }">{{item.time | date : 'yyyy-MM-dd HH:mm:ss'}}</p> |
||||||
|
</nz-timeline-item> |
||||||
|
</nz-timeline> |
||||||
|
<nz-result *ngIf="logisticsTraceDetails === null" nzStatus="404" nzTitle="404" nzSubTitle="很抱歉暂无物流信息."></nz-result> |
||||||
|
</nz-spin> |
||||||
|
</ng-container> |
||||||
|
</nz-modal> |
@ -0,0 +1,6 @@ |
|||||||
|
.search-area { |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
.search-area button { |
||||||
|
margin-right: 8px; |
||||||
|
} |
@ -0,0 +1,284 @@ |
|||||||
|
import { Component } from '@angular/core'; |
||||||
|
import {FormGroup, FormsModule, NonNullableFormBuilder, ReactiveFormsModule} from "@angular/forms"; |
||||||
|
import {NzMessageService} from "ng-zorro-antd/message"; |
||||||
|
import {NzColDirective, NzRowDirective} from "ng-zorro-antd/grid"; |
||||||
|
import { NzFormDirective, NzFormModule} from "ng-zorro-antd/form"; |
||||||
|
import {NzInputDirective} from "ng-zorro-antd/input"; |
||||||
|
import {NzDatePickerComponent, NzRangePickerComponent} from "ng-zorro-antd/date-picker"; |
||||||
|
import {NzRadioButtonDirective, NzRadioComponent, NzRadioGroupComponent} from "ng-zorro-antd/radio"; |
||||||
|
import {NzCellFixedDirective, NzTableComponent, NzTableModule, NzThMeasureDirective} from "ng-zorro-antd/table"; |
||||||
|
import {NzModalComponent, NzModalContentDirective, NzModalModule} from "ng-zorro-antd/modal"; |
||||||
|
import {DatePipe, NgClass, NgForOf, NgIf, NgOptimizedImage} from "@angular/common"; |
||||||
|
import {NzOptionComponent, NzSelectComponent} from "ng-zorro-antd/select"; |
||||||
|
import {NzButtonComponent} from "ng-zorro-antd/button"; |
||||||
|
import {NzTabSetComponent, NzTabsModule} from "ng-zorro-antd/tabs"; |
||||||
|
import {NzDescriptionsModule} from "ng-zorro-antd/descriptions"; |
||||||
|
import {NzImageDirective, NzImageModule} from "ng-zorro-antd/image"; |
||||||
|
|
||||||
|
import {NzIconDirective} from "ng-zorro-antd/icon"; |
||||||
|
import {NzBadgeComponent} from "ng-zorro-antd/badge"; |
||||||
|
import {fallbackImg, logisticsStatus, orderPayType} from '../../../data/goods/goods.namespace'; |
||||||
|
import {NzDividerComponent} from "ng-zorro-antd/divider"; |
||||||
|
import {NzDropDownADirective, NzDropDownDirective, NzDropdownMenuComponent} from "ng-zorro-antd/dropdown"; |
||||||
|
import {NzMenuDirective, NzMenuItemComponent} from "ng-zorro-antd/menu"; |
||||||
|
import {NzResultComponent} from "ng-zorro-antd/result"; |
||||||
|
import {NzSpinComponent} from "ng-zorro-antd/spin"; |
||||||
|
import {NzTimelineComponent, NzTimelineItemComponent} from "ng-zorro-antd/timeline"; |
||||||
|
import {NzTreeSelectComponent} from "ng-zorro-antd/tree-select"; |
||||||
|
import {environment} from "../../../../environments/environment"; |
||||||
|
import {OrderGoodsService} from "../../../services/trade/order-goods.service"; |
||||||
|
import {GoodsService} from "../../../services/goods/goods.service"; |
||||||
|
import {OrderGoodsData} from "../../../model/order.interface"; |
||||||
|
import {GoodsStatusPipe} from "../../../pipes/goods/goods-status.pipe"; |
||||||
|
import {NzPopconfirmDirective} from "ng-zorro-antd/popconfirm"; |
||||||
|
import {AuditStatusPipe} from "../../../pipes/audit/audit-status.pipe"; |
||||||
|
import {IconService} from "../../../services/common/icon.service"; |
||||||
|
import {PayTypePipe} from "../../../pipes/goods/pay-type.pipe"; |
||||||
|
import {OrderChildStatusPipe} from "../../../pipes/goods/order-child-status.pipe"; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-goods-logistics-list', |
||||||
|
standalone: true, |
||||||
|
imports: [ |
||||||
|
NzColDirective, |
||||||
|
NzRowDirective, |
||||||
|
NzFormDirective, |
||||||
|
ReactiveFormsModule, |
||||||
|
NzTreeSelectComponent, |
||||||
|
NzInputDirective, |
||||||
|
NzSelectComponent, |
||||||
|
NzOptionComponent, |
||||||
|
NzButtonComponent, |
||||||
|
NzTableComponent, |
||||||
|
NzImageModule, |
||||||
|
NzModalModule, |
||||||
|
NzTableModule, |
||||||
|
NzFormModule, |
||||||
|
NzThMeasureDirective, |
||||||
|
NgForOf, |
||||||
|
NzImageDirective, |
||||||
|
GoodsStatusPipe, |
||||||
|
DatePipe, |
||||||
|
NzDropdownMenuComponent, |
||||||
|
NgIf, |
||||||
|
NzMenuDirective, |
||||||
|
NzDescriptionsModule, |
||||||
|
NzMenuItemComponent, |
||||||
|
NzPopconfirmDirective, |
||||||
|
NzDividerComponent, |
||||||
|
NzDropDownADirective, |
||||||
|
NzDropDownDirective, |
||||||
|
NzTabsModule, |
||||||
|
NzIconDirective, |
||||||
|
NzBadgeComponent, |
||||||
|
AuditStatusPipe, |
||||||
|
NzTabSetComponent, |
||||||
|
FormsModule, |
||||||
|
NzSpinComponent, |
||||||
|
NzTimelineItemComponent, |
||||||
|
NgClass, |
||||||
|
NzResultComponent, |
||||||
|
NzTimelineComponent, |
||||||
|
NzDatePickerComponent, |
||||||
|
NzRadioButtonDirective, |
||||||
|
NzRadioComponent, |
||||||
|
NzRadioGroupComponent, |
||||||
|
NzRangePickerComponent, |
||||||
|
PayTypePipe, |
||||||
|
OrderChildStatusPipe, |
||||||
|
|
||||||
|
], |
||||||
|
templateUrl: './goods-logistics-list.component.html', |
||||||
|
styleUrl: './goods-logistics-list.component.less' |
||||||
|
}) |
||||||
|
export class GoodsLogisticsListComponent { |
||||||
|
// 表单页数
|
||||||
|
tablePageNum = 1; |
||||||
|
// 表单数据
|
||||||
|
tableData: any = { |
||||||
|
total: 0, |
||||||
|
loading: false, |
||||||
|
list: [], |
||||||
|
}; |
||||||
|
// 搜索表单
|
||||||
|
searchForm: FormGroup; |
||||||
|
|
||||||
|
baseUrl = environment.baseUrl; |
||||||
|
imageUrl = environment.imageUrl; |
||||||
|
|
||||||
|
// 商品类型数据
|
||||||
|
nodes = []; |
||||||
|
nodesBrand = []; |
||||||
|
orderGoodsData: any; |
||||||
|
orderDetailModal = false; |
||||||
|
isVisible = false; |
||||||
|
orderDetailModalChild = false; |
||||||
|
orderDetailModalLoading = false; |
||||||
|
logisticsNo: any; |
||||||
|
logisticsTraceDetails: any; |
||||||
|
goodsOrderId: any; |
||||||
|
deliveryAddress: any; |
||||||
|
|
||||||
|
|
||||||
|
protected readonly fallbackImg = fallbackImg; |
||||||
|
protected readonly orderPayType = orderPayType; |
||||||
|
protected readonly logisticsStatus = logisticsStatus; |
||||||
|
|
||||||
|
constructor(private fb: NonNullableFormBuilder, |
||||||
|
private msg: NzMessageService, |
||||||
|
private iconService: IconService, |
||||||
|
private orderGoodsService: OrderGoodsService, |
||||||
|
private goodsService: GoodsService) { |
||||||
|
|
||||||
|
|
||||||
|
// 初始化搜索框
|
||||||
|
this.searchForm = this.fb.group({ |
||||||
|
logisticsNo: [''], |
||||||
|
orderNo: [''], |
||||||
|
childOrderNo: [''], |
||||||
|
goodsType: [''], |
||||||
|
goodsBrand: [''], |
||||||
|
userPhone: [''], |
||||||
|
goodsSpecsName: [''], |
||||||
|
createTimeArray: [[]], |
||||||
|
createTimeSelect: ['1'], |
||||||
|
createTimeS: [''], |
||||||
|
createTimeE: [''], |
||||||
|
goodsName: [''], |
||||||
|
payType: [''], |
||||||
|
status: [''], |
||||||
|
logisticsStatus: [''], |
||||||
|
}); |
||||||
|
this.getRequest(); |
||||||
|
this.getGoodsTypeNode(); |
||||||
|
this.getGoodsBrandNode(); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
// 查询列表
|
||||||
|
public getRequest(reset: boolean = false) { |
||||||
|
|
||||||
|
this.searchForm.controls['status'].setValue(2) |
||||||
|
if (this.searchForm.controls['createTimeArray'].value != null |
||||||
|
&& this.searchForm.controls['createTimeArray'].value.length > 0) { |
||||||
|
this.searchForm.controls['createTimeS'].setValue(new Date(this.searchForm.controls['createTimeArray'].value[0]).getTime()); |
||||||
|
this.searchForm.controls['createTimeE'].setValue(new Date(this.searchForm.controls['createTimeArray'].value[1]).getTime()); |
||||||
|
} else { |
||||||
|
this.searchForm.controls['createTimeS'].setValue(null) |
||||||
|
this.searchForm.controls['createTimeE'].setValue(null) |
||||||
|
} |
||||||
|
|
||||||
|
this.tableData.loading = true; |
||||||
|
if (reset) { |
||||||
|
this.tablePageNum = 1; |
||||||
|
} |
||||||
|
this.searchForm.value.pageNum = this.tablePageNum; |
||||||
|
this.searchForm.value.pageSize = 10; |
||||||
|
this.searchForm.value.time = new Date().getTime(); |
||||||
|
|
||||||
|
this.orderGoodsService.getListGoods(this.searchForm.value , (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.tableData = data['return_data']; |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
this.tableData.loading = false; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
// 获取商品分类
|
||||||
|
getGoodsTypeNode() { |
||||||
|
this.goodsService.getList({time: new Date().getTime()}, (data: any) => { |
||||||
|
if (data['return_code'] === '000000') { |
||||||
|
this.getNode(data['return_data']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
// 重制
|
||||||
|
public reset() { |
||||||
|
this.searchForm.reset(); |
||||||
|
this.getRequest(); |
||||||
|
} |
||||||
|
|
||||||
|
// 配置数据
|
||||||
|
getNode(array: any): any { |
||||||
|
array.forEach((item: any) => { |
||||||
|
if (item.children) { |
||||||
|
this.getNode(item.children); |
||||||
|
}else { |
||||||
|
item["isLeaf"] = true; |
||||||
|
} |
||||||
|
item["key"] = item.id; |
||||||
|
|
||||||
|
}); |
||||||
|
this.nodes = array; |
||||||
|
} |
||||||
|
|
||||||
|
// 获取商品品牌
|
||||||
|
getGoodsBrandNode() { |
||||||
|
this.goodsService.getListBrandAll( (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.nodesBrand = data['return_data']; |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
getLogisticsNo(id: number): void { |
||||||
|
this.goodsOrderId = id; |
||||||
|
this.isVisible = true; |
||||||
|
} |
||||||
|
|
||||||
|
showDetail(data: OrderGoodsData): void { |
||||||
|
this.orderGoodsData = data; |
||||||
|
this.findDeliveryAddressById(data.deliveryAddressId); |
||||||
|
this.orderDetailModal = true; |
||||||
|
} |
||||||
|
|
||||||
|
handleOk(): void { |
||||||
|
let params = { |
||||||
|
id: this.goodsOrderId, |
||||||
|
logisticsNo: this.logisticsNo, |
||||||
|
time: new Date().getTime() |
||||||
|
} |
||||||
|
|
||||||
|
this.orderGoodsService.updateLogisticsNo(params , (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.isVisible = false; |
||||||
|
this.getRequest(false); |
||||||
|
this.msg.success("成功") |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
showLogisticsNo(id: number): void { |
||||||
|
let params = { |
||||||
|
id:id, |
||||||
|
time: new Date().getTime() |
||||||
|
} |
||||||
|
|
||||||
|
this.orderGoodsService.getLogisticsMsg(params , (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.orderDetailModalChild = true; |
||||||
|
this.getRequest(false); |
||||||
|
this.logisticsTraceDetails = data['return_data']['logisticsTraceDetails']; |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
findDeliveryAddressById(id: number): void { |
||||||
|
this.goodsService.findDeliveryAddressById(id, (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.deliveryAddress = data['return_data']; |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -1,32 +0,0 @@ |
|||||||
import { Pipe, PipeTransform } from '@angular/core'; |
|
||||||
|
|
||||||
@Pipe({ |
|
||||||
name: 'orderGoodsStatus', |
|
||||||
standalone: true |
|
||||||
}) |
|
||||||
export class OrderGoodsStatusPipe implements PipeTransform { |
|
||||||
|
|
||||||
transform(value: number): any { |
|
||||||
switch (value) { |
|
||||||
case 1: |
|
||||||
return '待发货'; |
|
||||||
case 2: |
|
||||||
return '已发货'; |
|
||||||
case 3: |
|
||||||
return '配送中'; |
|
||||||
case 4: |
|
||||||
return '已送达'; |
|
||||||
case 5: |
|
||||||
return '已取消'; |
|
||||||
case 6: |
|
||||||
return '退货中'; |
|
||||||
case 7: |
|
||||||
return '已退货'; |
|
||||||
case 8: |
|
||||||
return '待支付'; |
|
||||||
default: |
|
||||||
return '未知状态' |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue