mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
30 lines
791 B
TypeScript
30 lines
791 B
TypeScript
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
|
|
import { customTask, fullTask } from 'src/app/models/dailyworktask.model';
|
|
import { ThemeService } from 'src/app/services/theme.service'
|
|
|
|
@Component({
|
|
selector: 'app-task-details',
|
|
templateUrl: './task-details.page.html',
|
|
styleUrls: ['./task-details.page.scss'],
|
|
})
|
|
export class TaskDetailsPage implements OnInit {
|
|
|
|
@Input() task = new customTask();
|
|
@Input() intervenientes = []
|
|
@Input() cc = []
|
|
@Input() customDate = ''
|
|
@Input() fulltask = new fullTask()
|
|
|
|
@Output() openOptions = new EventEmitter<any>();
|
|
@Output() goBack = new EventEmitter<any>();
|
|
@Output() viewDocument = new EventEmitter<any>();
|
|
|
|
constructor(
|
|
public ThemeService: ThemeService
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|