-downloads
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 7m6s
Build Docker Image / Restart Docker Compose (push) Successful in 0s

-subscribe project
This commit is contained in:
x2Skyz
2025-11-30 23:47:29 +07:00
parent 07d49d87cf
commit 40e682e5d8
10 changed files with 193 additions and 77 deletions

View File

@@ -12,6 +12,7 @@ import { Router } from '@angular/router';
styleUrl: './main-manager.component.css'
})
export class MainManagerComponent implements OnInit {
@Output() documentDownload = new EventEmitter<any>();
mode: string = 'i';
@@ -60,6 +61,10 @@ export class MainManagerComponent implements OnInit {
}
});
}
OnDocumentDownload(prjseq: number){
this.documentDownload.emit(prjseq);
}
setupFormControl(){
}