1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const members = () => {
return [{
name: '',
birthday: null,
degree: '',
title: '',
researchDirection: '',
workUnit: '',
projWork: '',
forMonths: 0
}]
}
// 预期成果选项
const targetList = () => {
return [{
targetid: 'df6a6e38-55b8-4029-bd5f-4b5e485cc77f',
targetName: '新技术',
resultCount: 0
}, {
targetid: '75692b33-7c8a-45df-ab45-bc375aa5de89',
targetName: '其他',
resultCount: 0
}, {
targetid: 'b5642946-8c7c-4e44-bf1a-b19cd8ec3a24',
targetName: '研究(咨询)报告',
resultCount: 0
}, {
targetid: '0bf5273f-3357-42a2-823c-ae3ef6405410',
targetName: '专利',
resultCount: 0
}, {
targetid: '8c2d2c0c-9d47-49f9-abd1-d13e21f4751a',
targetName: '技术标准',
resultCount: 0
}, {
targetid: 'f057c56e-a8b1-4add-a02d-932593f36d8b',
targetName: '新工艺',
resultCount: 0
}, {
targetid: '108705dd-623e-4b7a-bb51-a3ffffa496a5',
targetName: '新产品(含农业新品种、计算机软件等)',
resultCount: 0
}, {
targetid: '6fd9af97-8a7f-4f48-bd6f-5b00da287601',
targetName: '新装备',
resultCount: 0
}, {
targetid: 'eb74bc1e-60a8-4f19-9ce6-3733ac38664e',
targetName: '论文论著',
resultCount: 0
}]
}
export {
targetList,
members
}