沈斌
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
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { NzMessageService } from 'ng-zorro-antd';
import { getFakeList } from '../../../../../../_mock/api.service';
 
@Component({
    selector: 'pro-list-card-list',
    templateUrl: './card-list.component.html',
    styles: [`
    :host ::ng-deep .ant-card-meta-title {
        margin-bottom: 12px;
    }
    `],
    encapsulation: ViewEncapsulation.Emulated
})
export class ProCardListComponent implements OnInit {
 
    list: any[] = [ null ];
 
    loading = true;
 
    constructor(public msg: NzMessageService) {}
 
    ngOnInit() {
        setTimeout(() => {
            this.list = this.list.concat(getFakeList(8));
            this.loading = false;
        }, 1000);
    }
}