车辆对接
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<!--
|
||||
* @Author: your name
|
||||
* @Date: 2021-12-16 10:19:08
|
||||
* @LastEditTime: 2022-01-05 09:40:31
|
||||
* @LastEditTime: 2022-01-12 10:42:22
|
||||
* @LastEditors: Please set LastEditors
|
||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
* @FilePath: \tms-obc-web\src\app\routes\order-management\components\risk-detail\risk-detail.component.html
|
||||
@ -15,7 +15,10 @@
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
<!-- [nzExtra]="extraTemplate" -->
|
||||
<nz-card nzTitle="投诉信息" >
|
||||
<nz-card nzTitle="投诉信息" [nzExtra]="cardTemplate">
|
||||
<ng-template #cardTemplate>
|
||||
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="viewEvaluate()" *ngIf="datailList?.complaintStatus == 1">处理</button>
|
||||
</ng-template>
|
||||
<h2>投诉单号:{{datailList?.id}}</h2>
|
||||
<sf #sf [compact]="true" [ui]="ui" [schema]="schema" [button]="'none'" *ngIf="schema" [formData]="datailList">
|
||||
<ng-template sf-template="imgUrls" let-schema="schema" let-item let-ui="ui">
|
||||
@ -46,8 +49,20 @@
|
||||
</nz-timeline-item>
|
||||
<nz-timeline-item [nzLabel]="datailList?.handleTime">运多星运营后台
|
||||
<div class="info">操作人员:{{datailList?.complainantIdLabel}}</div>
|
||||
<div class="info">处理状态:{{datailList?.complaintStatusLabel}}</div>
|
||||
<div class="info">处理详情:{{datailList?.handleDetails}}</div>
|
||||
<div class="info">处理结果:{{datailList?.handleResult}}</div>
|
||||
</nz-timeline-item>
|
||||
</nz-timeline>
|
||||
</nz-card>
|
||||
<nz-modal [(nzVisible)]="isVisibleRE" [nzWidth]="600" [nzFooter]="nzModalFooterview2" (nzOnOk)="handleOK()" nzTitle="处理" (nzOnCancel)="Cancel()">
|
||||
<ng-container *nzModalContent>
|
||||
<sf #sfView [schema]="schemaView" [ui]="uiView" [compact]="true" [button]="'none'">
|
||||
</sf>
|
||||
</ng-container>
|
||||
<ng-template #nzModalFooterview2>
|
||||
<button nz-button nzType="default" (click)="handleCancel('1')">拒绝</button>
|
||||
<button nz-button nzType="primary" (click)="handleOK()">通过</button>
|
||||
<button nz-button nzType="primary" (click)="handleCancel2()">强制取消</button>
|
||||
</ng-template>
|
||||
</nz-modal>
|
||||
Reference in New Issue
Block a user