|
|
|
@ -3,6 +3,9 @@ import { CustomReuseStrategy } from 'src/app/CustomReuseStrategy';
|
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
import { Router } from '@angular/router'; |
|
|
|
|
import { NzUploadFile } from 'ng-zorro-antd/upload'; |
|
|
|
|
import { Observable, Observer } from 'rxjs'; |
|
|
|
|
import { NzUploadChangeParam } from 'ng-zorro-antd/upload'; |
|
|
|
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
|
import { asBlob } from 'html-docx-js-typescript' |
|
|
|
@ -17,6 +20,8 @@ declare var AMap: any;
|
|
|
|
|
|
|
|
|
|
export class UnitDetailsComponent implements OnInit { |
|
|
|
|
@ViewChild('box') box: ElementRef; |
|
|
|
|
loading = false; |
|
|
|
|
avatarUrl?: string; |
|
|
|
|
constructor(private message: NzMessageService, private router: Router, private toTree: TreeService, private fb: FormBuilder, private http: HttpClient, private renderer: Renderer2, private el: ElementRef, public renderer2: Renderer2, private elementRef: ElementRef) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -323,7 +328,18 @@ export class UnitDetailsComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleChange(info: NzUploadChangeParam): void { // 点击事件 - 附件上传回调
|
|
|
|
|
console.log('[点击事件] - 附件上传'); |
|
|
|
|
console.log(info); |
|
|
|
|
if (info.file.status !== 'uploading') { |
|
|
|
|
console.log(info.file, info.fileList); |
|
|
|
|
} |
|
|
|
|
if (info.file.status === 'done') { |
|
|
|
|
this.message.success(`${info.file.name} file uploaded successfully`); |
|
|
|
|
} else if (info.file.status === 'error') { |
|
|
|
|
this.message.error(`${info.file.name} file upload failed.`); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
listOfData: any[] = []; |
|
|
|
|
listOfData2: any[] = []; |
|
|
|
|