fix bug
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2021-12-16 10:19:08
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-02-25 11:38:11
|
||||
* @LastEditTime : 2022-03-22 17:32:53
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\risk-detail\\risk-detail.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -17,44 +17,51 @@
|
||||
</page-header-wrapper>
|
||||
<nz-card nzTitle="运单信息">
|
||||
<sv-container labelWidth="150" col="2">
|
||||
<sv label="订单号">{{datailList?.billCode}}</sv>
|
||||
<sv label="订单号">{{i?.billCode}}</sv>
|
||||
<sv label="申诉状态">
|
||||
<span *ngIf="datailList?.representationsStatus == 1">待申述</span>
|
||||
<span *ngIf="datailList?.representationsStatus == 2">申述中</span>
|
||||
<span *ngIf="datailList?.representationsStatus == 2">申述成功</span>
|
||||
<span *ngIf="datailList?.representationsStatus == 4">申诉失败</span>
|
||||
<span *ngIf="i?.representationsStatus == 1">待申述</span>
|
||||
<span *ngIf="i?.representationsStatus == 2">申述中</span>
|
||||
<span *ngIf="i?.representationsStatus == 2">申述成功</span>
|
||||
<span *ngIf="i?.representationsStatus == 4">申诉失败</span>
|
||||
</sv>
|
||||
<sv label="承运司机">{{datailList?.driverName}} / {{datailList?.driverPhoneNumber}} / {{i?.carId}}</sv>
|
||||
<sv label="收款人"> {{datailList?.payeeName}} / {{datailList?.payeePhoneNumber}} </sv>
|
||||
<sv label="装货时间">{{datailList?.loadTime}}</sv>
|
||||
<sv label="卸货时间">{{datailList?.unloadTime}}</sv>
|
||||
<sv label="装货地">{{datailList?.loadingPlace}}</sv>
|
||||
<sv label="卸货地">{{datailList?.dischargePlace}}</sv>
|
||||
<sv label="承运司机">{{i?.driverName}} / {{i?.driverPhoneNumber}} / {{i?.carId}}</sv>
|
||||
<sv label="收款人"> {{i?.payeeName}} / {{i?.payeePhoneNumber}} </sv>
|
||||
<sv label="装货时间">{{i?.loadTime}}</sv>
|
||||
<sv label="卸货时间">{{i?.unloadTime}}</sv>
|
||||
<sv label="装货地">{{i?.loadingPlace}}</sv>
|
||||
<sv label="卸货地">{{i?.dischargePlace}}</sv>
|
||||
<sv label="异常原因" col="1">
|
||||
<div class="bg-grey-lighter p-sm">
|
||||
<div *ngFor="let items of datailList?.billComplianceVOS">
|
||||
<div *ngFor="let items of i?.billComplianceVOS">
|
||||
<div>{{items.complianceName}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</sv>
|
||||
</sv-container>
|
||||
</nz-card>
|
||||
<nz-card nzTitle="申诉信息" >
|
||||
<sf #sf [compact]="true" [ui]="ui" [schema]="schema" [button]="'none'" *ngIf="schema" [formData]="datailList">
|
||||
<!-- <nz-card nzTitle="申诉信息" >
|
||||
<sf #sf [compact]="true" [ui]="ui" [schema]="schema" [button]="'none'" *ngIf="schema" [formData]="i">
|
||||
<ng-template sf-template="enterpriseQualificationCe" let-schema="schema" let-item let-ui="ui">
|
||||
<app-imagelist [imgList]="datailList?.fileArr"></app-imagelist>
|
||||
<app-imagelist [imgList]="i?.fileArr"></app-imagelist>
|
||||
</ng-template>
|
||||
</sf>
|
||||
</nz-card> -->
|
||||
<nz-card nzTitle="申诉信息" >
|
||||
<sf #sf [compact]="true" [ui]="ui" [schema]="schema" [button]="'none'" *ngIf="i" [formData]="i">
|
||||
<ng-template sf-template="uploadVanchor" let-schema="schema" let-me let-ui="ui">
|
||||
<nz-upload *ngIf="me.formProperty.value" [nzFileList]="me.formProperty.value" [nzShowButton]="false"
|
||||
[nzShowUploadList]="{showRemoveIcon:false}">
|
||||
</nz-upload>
|
||||
<!-- <app-imagelist *ngIf="me.formProperty.value" [imgList]="[me.formProperty.value]"></app-imagelist> -->
|
||||
<span *ngIf="!me.formProperty.value">- </span>
|
||||
</ng-template>
|
||||
</sf>
|
||||
</nz-card>
|
||||
|
||||
<nz-card class="dealBox" nzTitle="申诉处理">
|
||||
<nz-timeline nzMode="left">
|
||||
<nz-timeline-item nzLabel="2015-09-01" nzColor="green">申诉成功</nz-timeline-item>
|
||||
<nz-timeline-item nzLabel="2015-09-01 09:12:11">重新提交申诉申请<div class="info">操作人员:张三</div>
|
||||
</nz-timeline-item>
|
||||
<nz-timeline-item nzLabel="2015-09-01 09:12:11">驳回<div class="info">操作人员:张三</div>
|
||||
</nz-timeline-item>
|
||||
<nz-timeline-item nzLabel="2015-09-01 09:12:11">提交申诉申请<div class="info">操作人员:张三</div>
|
||||
<nz-timeline-item [nzLabel]="item?.operatorTimestamp" nzColor="green" *ngFor="let item of logList">
|
||||
<div>{{item?.operationContent}}</div>
|
||||
<div>操作人:{{item?.operator}}</div>
|
||||
</nz-timeline-item>
|
||||
</nz-timeline>
|
||||
</nz-card>
|
||||
|
||||
Reference in New Issue
Block a user