blob: 0f096b718a07659513c144116b189e06cd681af4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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;
// 业务需求列表
businessList: object[] = BUSINESS_REQUIREMENT;
constructor() { }
ngOnInit() {
}
}
|