ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
35 lines (33 loc) • 866 B
text/typescript
import { Component } from '@angular/core';
export class NzDemoUploadFileListComponent {
fileList = [{
uid: 1,
name: 'xxx.png',
status: 'done',
response: 'Server Error 500', // custom error message to show
url: 'http://www.baidu.com/xxx.png',
}, {
uid: 2,
name: 'yyy.png',
status: 'done',
url: 'http://www.baidu.com/yyy.png',
}, {
uid: 3,
name: 'zzz.png',
status: 'error',
response: 'Server Error 500', // custom error message to show
url: 'http://www.baidu.com/zzz.png',
}];
}