车辆对接
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-16 10:19:08
|
* @Date: 2021-12-16 10:19:08
|
||||||
* @LastEditTime: 2022-01-04 17:58:06
|
* @LastEditTime: 2022-01-05 09:40:31
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: Please set LastEditors
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @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
|
* @FilePath: \tms-obc-web\src\app\routes\order-management\components\risk-detail\risk-detail.component.html
|
||||||
@ -24,8 +24,9 @@
|
|||||||
</sf>
|
</sf>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
|
|
||||||
|
|
||||||
<nz-card class="dealBox" nzTitle="投诉处理">
|
<nz-card class="dealBox" nzTitle="投诉处理">
|
||||||
<nz-timeline class="d-block pl-md pt-md">
|
<!-- <nz-timeline class="d-block pl-md pt-md">
|
||||||
<nz-timeline-item *ngFor="let i of datailList" [nzDot]="dotTpl">
|
<nz-timeline-item *ngFor="let i of datailList" [nzDot]="dotTpl">
|
||||||
<ng-template #dotTpl>
|
<ng-template #dotTpl>
|
||||||
<div class="md-sm p-sm icon-sm rounded-circle text-white bg-{{ i.dot.bg }}">
|
<div class="md-sm p-sm icon-sm rounded-circle text-white bg-{{ i.dot.bg }}">
|
||||||
@ -38,5 +39,15 @@
|
|||||||
<div class="text-grey">{{ i.tags }}</div>
|
<div class="text-grey">{{ i.tags }}</div>
|
||||||
</div>
|
</div>
|
||||||
</nz-timeline-item>
|
</nz-timeline-item>
|
||||||
|
</nz-timeline> -->
|
||||||
|
<nz-timeline nzMode="left">
|
||||||
|
<nz-timeline-item >TMS运营管理系统
|
||||||
|
<div class="info">提交时间:{{datailList?.complainantTime}}</div>
|
||||||
|
</nz-timeline-item>
|
||||||
|
<nz-timeline-item [nzLabel]="datailList?.handleTime">运多星运营后台
|
||||||
|
<div class="info">操作人员:{{datailList?.complainantIdLabel}}</div>
|
||||||
|
<div class="info">处理详情:{{datailList?.handleDetails}}</div>
|
||||||
|
<div class="info">处理结果:{{datailList?.handleResult}}</div>
|
||||||
|
</nz-timeline-item>
|
||||||
</nz-timeline>
|
</nz-timeline>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
import { Router } from '@angular/router';
|
||||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||||
import { STColumn, STComponent } from '@delon/abc/st';
|
import { STColumn, STComponent } from '@delon/abc/st';
|
||||||
import { SFComponent, SFDateWidgetSchema, SFSchema, SFSelectWidgetSchema, SFUISchema } from '@delon/form';
|
import { SFComponent, SFDateWidgetSchema, SFSchema, SFSelectWidgetSchema, SFUISchema } from '@delon/form';
|
||||||
@ -60,7 +61,11 @@ export class OrderManagementComplaintComponent implements OnInit {
|
|||||||
count: 0,
|
count: 0,
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
constructor(public service: OrderManagementService, private modal: NzModalService) { }
|
constructor(
|
||||||
|
public service: OrderManagementService,
|
||||||
|
private modal: NzModalService,
|
||||||
|
private router: Router
|
||||||
|
) { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询参数
|
* 查询参数
|
||||||
@ -171,7 +176,7 @@ export class OrderManagementComplaintComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '查看',
|
text: '查看',
|
||||||
click: (_record) => this.viewEvaluate(_record),
|
click: (_record) => this.view(_record),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -311,4 +316,7 @@ export class OrderManagementComplaintComponent implements OnInit {
|
|||||||
this.isVisibleRE = true
|
this.isVisibleRE = true
|
||||||
this.channelId = item.id;
|
this.channelId = item.id;
|
||||||
}
|
}
|
||||||
|
view(value: any) {
|
||||||
|
this.router.navigate(['/order-management/complaint-detail/' + value.id])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user