bixi
Version:
企业级中后台前端解决方案
34 lines (29 loc) • 707 B
text/typescript
import { Component, Input } from '@angular/core';
import { NzDrawerRef } from 'ng-zorro-antd/drawer';
({
selector: `app-demo-dialog-drawer`,
template: `
<p style="height: 1000px">参数:{{ record | json }}</p>
The end!
<div class="drawer-footer">
<button nz-button [nzType]="'default'" (click)="cancel()">
Cancel
</button>
<button nz-button [nzType]="'primary'" (click)="ok()">
OK
</button>
</div>
`,
})
export class DemoDrawerComponent {
()
record: any;
constructor(private ref: NzDrawerRef) {}
ok() {
this.ref.close(`new time: ${+new Date()}`);
this.cancel();
}
cancel() {
this.ref.close();
}
}