15 lines
498 B
TypeScript
15 lines
498 B
TypeScript
|
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||
|
|
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-goods',
|
||
|
|
imports: [AngularMaterialModule, CommonModule],
|
||
|
|
templateUrl: './goods.component.html',
|
||
|
|
styleUrl: './goods.component.scss'
|
||
|
|
})
|
||
|
|
export class GoodsComponent {
|
||
|
|
@Input() applicationid: number = 0;
|
||
|
|
@Output() completed = new EventEmitter<boolean>();
|
||
|
|
}
|