This commit is contained in:
Taric Xin
2022-02-17 09:22:41 +08:00
parent 6c2271c3d2
commit 8d4fa3553d
3 changed files with 49 additions and 36 deletions

View File

@ -1,5 +1,5 @@
/*
* @Description :
* @Description :
* @Version : 1.0
* @Author : Shiming
* @Date : 2021-12-28 14:42:03
@ -60,11 +60,12 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
private msgSrv: NzMessageService,
private service: OrderManagementService,
private router: Router,
private modal: NzModalService,
private modal: NzModalService
) {}
ngOnInit(): void {
this.initData();
this.MapInit();
}
initData() {
@ -82,21 +83,21 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
}
});
}
// 取消订单
cancellation() {
// api_get_cancelAnOrder
this.modal.confirm({
nzTitle: '<b>确定取消该订单吗?</b>',
nzContent: `<b>取消后无法恢复,请确认</b>`,
nzOnOk: () =>
this.service.request(this.service.$api_get_cancelAnOrder, {id: this.id}).subscribe((res) => {
if (res === true) {
this.service.msgSrv.success('操作成功!');
this.initData();
}
}),
})
}
// 取消订单
cancellation() {
// api_get_cancelAnOrder
this.modal.confirm({
nzTitle: '<b>确定取消该订单吗?</b>',
nzContent: `<b>取消后无法恢复,请确认</b>`,
nzOnOk: () =>
this.service.request(this.service.$api_get_cancelAnOrder, { id: this.id }).subscribe(res => {
if (res === true) {
this.service.msgSrv.success('操作成功!');
this.initData();
}
})
});
}
goBack() {
window.history.go(-1);
}
@ -121,7 +122,7 @@ cancellation() {
goDistance(elf: NzCardComponent) {
if (elf) {
elf['elementRef'].nativeElement.scrollIntoView({ behavior: 'smooth', block: 'start', inline: 'start' , });
elf['elementRef'].nativeElement.scrollIntoView({ behavior: 'smooth', block: 'start', inline: 'start' });
// elf['elementRef'].nativeElement.className = 'target-fix'
}
}
@ -137,7 +138,7 @@ cancellation() {
});
});
console.log(list);
this.MapList = list
this.MapList = list;
}
});
}