车辆对接

This commit is contained in:
wangshiming
2021-12-23 14:44:17 +08:00
parent c914ee023e
commit 4b4e54933e
14 changed files with 1050 additions and 56 deletions

View File

@ -1,13 +1,14 @@
import { ViewChild } from '@angular/core';
/*
* @Author: your name
* @Date: 2021-12-03 15:31:52
* @LastEditTime: 2021-12-21 16:50:27
* @LastEditTime: 2021-12-23 13:47:57
* @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\vehicle-detail\vehicle-detail.component.ts
*/
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { ActivatedRoute, Router } from '@angular/router';
import { STColumn } from '@delon/abc/st';
import { _HttpClient } from '@delon/theme';
import { NzMessageService } from 'ng-zorro-antd/message';
@ -21,7 +22,8 @@ import { OrderManagementService } from '../../services/order-management.service'
export class OrderManagementVehicleDetailComponent implements OnInit {
id = this.route.snapshot.params.id;
i: any;
@ViewChild('distannce3', { static: false })
i: any= {unLoadingPlaceList:[]};
logColumns: STColumn[] = [
{ title: '款项', index: 'costName' },
{ title: '总费用(元)', index: 'price' },
@ -48,7 +50,8 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
private route: ActivatedRoute,
private msgSrv: NzMessageService,
private service: OrderManagementService,
private modalService: NzModalService
private modalService: NzModalService,
private router: Router
) {
}
@ -78,5 +81,9 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
goBack() {
window.history.go(-1);
}
// 修改订单
changeOrder() {
console.log(this.id)
this.router.navigate(['order-management/vehicle-detailChange', this.id])
}
}