Newer
Older
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { Component, OnInit } from '@angular/core';
import {NzMessageService, UploadFile} from 'ng-zorro-antd';
import {WorkService} from '../../work.service';
@Component({
selector: 'smart-upload',
templateUrl: './upload.component.html',
styles: []
})
export class UploadComponent implements OnInit {
isVisible = false;
fileList: UploadFile[] = [];
constructor(private message:NzMessageService,private workSer:WorkService) { }
ngOnInit() {
}
showModal(){
this.isVisible = true;
}
beforeUpload = (file: UploadFile): boolean => {
console.log(file.type);
const isExcel = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
if (!isExcel) {
this.message.error('请上传excel文件!');
}else{
this.fileList.push(file);
}
return false;
};
handleCancel(){
this.isVisible = false;
this.fileList = [];
}
handleOk(){
if(this.fileList.length == 0){
this.message.warning("请选择文件");
return false;
}
const formData = new FormData();
this.fileList.forEach((file:any)=>{
formData.append('file',file);
})
this.workSer.importInventory(formData).subscribe(
(res)=>{
if(res.errCode == 10000){
this.isVisible = false;
this.fileList = [];
this.message.success("上传成功");
}else{
this.message.error(res.errMsg);
}
}
)
}
}