import {Component,OnInit,Input,Output,EventEmitter} from '@angular/core'; import { UploadFile } from './../../../../../../components/base/upload/interface'; import { CmMessageService } from './../../../../../../../src/components/cosmos.module'; @Component({ selector: 'cm-upload-doc-4', templateUrl: './upload-doc-4.component.html', styleUrls: ['./upload-doc-4.component.css'] }) export class UploadDoc4Component implements OnInit{ ngOnInit() {} ngOnDestroy() {} defaultFileList = [{ uid: -1, name: 'xxx.png', status: 'done', url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', }, { uid: -2, name: 'yyy.png', status: 'done', url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', }]; fileList1 = [...this.defaultFileList]; fileList2 = [...this.defaultFileList]; constructor(private msg: CmMessageService) {} }