blob: d718d9d38c8408b6ff504dede49ddf146af37834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { Component, OnInit, Input } from '@angular/core';
import { BUSINESS_REQUIREMENT } from '../../../../constants/constants';
@Component({
selector: 'app-basic-info',
templateUrl: './basic-info.component.html',
styleUrls: ['./basic-info.component.less']
})
export class BasicInfoComponent implements OnInit {
@Input() checkDetail: any;
@Input() businessRequirement: any;
@Input() NSTinfo: any;
@Input() taskModel: any;
// 业务需求列表
businessList: object[] = BUSINESS_REQUIREMENT;
constructor() { }
ngOnInit() {
}
}
|