沈斌
2017-12-15 f9b157566af34b8dc28ba10b34d025ac04f3168b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<div class="content__title">
    <h1>
        Modal
    </h1>
</div>
<div nz-row [nzGutter]="16">
    <div nz-col [nzMd]="12">
        <ng-template #modelContent>
            <p>Some contents...</p>
            <p>Some contents...</p>
            <p>Some contents...</p>
            <p>Some contents...</p>
        </ng-template>
        <nz-card nzTitle="Basic">
            <div class="pb-md">
                <button nz-button (click)="basicModel(modelContent)" class="mr-sm">Open</button>
                <button nz-button (click)="confirmModel(modelContent)">Confirm</button>
            </div>
            <button nz-button (click)="showModel('info')" class="mr-sm">Info</button>
            <button nz-button (click)="showModel('success')" class="mr-sm">Success</button>
            <button nz-button (click)="showModel('error')" class="mr-sm">Error</button>
            <button nz-button (click)="showModel('warning')">Warning</button>
        </nz-card>
    </div>
    <div nz-col [nzMd]="12">
        <nz-card nzTitle="Custom Component">
            <button nz-button (click)="customCompModel()" class="mr-sm">Default</button>
            <button nz-button (click)="customCompModel('sm')" class="mr-sm">Small</button>
            <button nz-button (click)="customCompModel('lg')">Large</button>
            <div class="mt-sm">
                <pre [innerHTML]="options | json"></pre>
            </div>
        </nz-card>
    </div>
</div>