1
2
3
4
5
6
7
8
9
10
11
12
| import { Component } from '@angular/core';
| import { NzModalService } from 'ng-zorro-antd';
|
| @Component({
| selector: 'exception-404',
| template: `<exception type="404" style="min-height: 500px; height: 80%;"></exception>`,
| })
| export class Exception404Component {
| constructor(modalSrv: NzModalService) {
| modalSrv.closeAll();
| }
| }
|
|