/* * @Author: your name * @Date: 2021-12-03 15:31:52 * @LastEditTime: 2021-12-06 20:34:08 * @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 { STColumn } from '@delon/abc/st'; import { _HttpClient } from '@delon/theme'; import { NzMessageService } from 'ng-zorro-antd/message'; import { NzModalService } from 'ng-zorro-antd/modal'; import { SupplyManagementService } from '../../services/waybill-management.service'; @Component({ selector: 'app-supply-management-bulk-detail', templateUrl: './bulk-detail.component.html', styleUrls: ['./bulk-detail.component.less'] }) export class WaybillManagementBulkeDetailComponent implements OnInit { id = this.route.snapshot.params.id; i: any; logColumns: STColumn[] = [ { title: '时间', index: 'operationUserPhone' }, { title: '地点', index: ' createTime' }, ]; constructor( private route: ActivatedRoute, private msgSrv: NzMessageService, private service: SupplyManagementService, private modalService: NzModalService ) { } ngOnInit(): void { this.service.http.get(`/user/${this.id}?_allow_anonymous=true&_allow_badcode=true`).subscribe(res => { console.log(res); this.i = res }); } hand() { this.modalService.create({ nzTitle: '', // nzContent: OrderManagementGaodeMapComponent, nzWidth: 1200 }); } goBack() { window.history.go(-1); } }