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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=x-cp20936">
<meta name=Generator content="Microsoft Word 14 (filtered)">
<!--[if gte mso 9]><xml><w:WordDocument><w:View>Print</w:View><w:TrackMoves>false</w:TrackMoves><w:TrackFormatting/><w:ValidateAgainstSchemas/><w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid><w:IgnoreMixedContent>false</w:IgnoreMixedContent><w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText><w:DoNotPromoteQF/><w:LidThemeOther>EN-US</w:LidThemeOther><w:LidThemeAsian>ZH-CN</w:LidThemeAsian><w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript><w:Compatibility><w:BreakWrappedTables/><w:SnapToGridInCell/><w:WrapTextWithPunct/><w:UseAsianBreakRules/><w:DontGrowAutofit/><w:SplitPgBreakAndParaMark/><w:DontVertAlignCellWithSp/><w:DontBreakConstrainedForcedTables/><w:DontVertAlignInTxbx/><w:Word11KerningPairs/><w:CachedColBalance/><w:UseFELayout/></w:Compatibility><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="off"/><m:dispDef/><m:lMargin m:val="0"/> <m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr></w:WordDocument></xml><![endif]-->
<style>
<!--
@font-face {
font-family: SimSun_GB2312;
}
/* Style Definitions */
div,
span,
p {
margin: 0cm;
margin-bottom: .0001pt;
text-align: justify;
text-justify: inter-ideograph;
font-size: 12.0pt;
font-family: "SimSun";
}
table tr {
height: 23.6pt;
}
/* Page Definitions */
@page WordSection1 {
size: 595.3pt 841.9pt;
margin: 72.0pt 64.35pt 72.0pt 59.55pt;
layout-grid: 15.6pt;
}
div.WordSection1 {
page: WordSection1;
}
@page WordSection2 {
size: 841.9pt 595.3pt;
mso-page-orientation: landscape;
margin: 64.35pt 72.0pt 59.55pt 72.0pt;
mso-header-margin: 42.55pt;
mso-footer-margin: 49.6pt;
mso-paper-source: 0;
layout-grid: 16.3pt;
}
div.WordSection2 {
page: WordSection2;
}
-->
</style>
</head>
<body bgcolor=white lang=ZH-CN link=blue vlink=purple style='text-justify-trim:punctuation'>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:22.0pt;font-family:STZhongsong'>内蒙古自治区首府地区公立医院高水平</span>
</b>
</p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:22.0pt;font-family:STZhongsong'>临床专科建设科技项目申报书</span>
</b>
</p>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<p style='text-indent:64.0pt;line-height:300%'>
<span style='font-size:16.0pt;line-height:300%;'>项目名称:${projName!}</span>
</p>
<p style='text-indent:64.0pt;line-height:300%'>
<span style='font-size:16.0pt;line-height:300%;'>申报单位:${appUnitName!}</span>
</p>
<p style='text-indent:64.0pt;line-height:300%'>
<span style='font-size:16.0pt;line-height:300%;'>合作单位:${cooperativeUnitsStr!}</span>
</p>
<p style='text-indent:64.0pt;line-height:300%'>
<span style='font-size:16.0pt;line-height:300%;'>归口管理部门:</span>
</p>
<p style='text-indent:64.0pt;line-height:300%'>
<span style='font-size:16.0pt;line-height:300%;'>申报日期:${createdStr!}</span>
</p>
<p><span> </span></p>
<p><span> </span></p>
<p align=center style='text-align:center'>
<b><span style='font-size:16.0pt;;letter-spacing:2.0pt'>内蒙古自治区卫生健康委制</span></b>
</p>
<p align=center style='text-align:center'>
<b><span style='font-size:16.0pt;letter-spacing:2.0pt'>二o二四年</span></b>
</p>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p align=center style='text-align:center'>
<b>
<span style='font-size:20.0pt;font-family:STZhongsong'>项目基本信息表</span>
</b>
</p>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=637 style='width:477.95pt;border-collapse:collapse;'>
<tr>
<td>
<p align=center style='text-align:center;'><span>项目名称</span></p>
</td>
<td colspan=6>${projName!}</td>
</tr>
<tr>
<td rowspan=4>
<p align=center style='text-align:center;'><span>项目申报单位</span></p>
</td>
<td>
<p align=center style='text-align:center;'><span>单位名称</span></p>
</td>
<td colspan=5>${appUnitName!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>通讯地址</span></p>
</td>
<td colspan=3>${address!}</td>
<td>
<p align=center style='text-align:center;'><span>邮编</span></p>
</td>
<td>${postCode!}</td>
</tr>
<tr style='height:46.7pt'>
<td>
<p align=center style='text-align:center;'><span>统一社会信用代码</span></p>
</td>
<td colspan=5>${creditCode!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>单位性质</span></p>
</td>
<td colspan=5>${natureName!}</td>
</tr>
<#list cooperativeUnits as unit>
<#if unit_index==0>
<tr>
<td rowspan=3>项目合作单位</td>
<td colspan=6>${unit.unitName!}</td>
</tr>
<#else>
<tr>
<td colspan=6>${unit.unitName!}</td>
</tr>
</#if>
</#list>
<tr>
<td width=91 style='width:68.2pt;' rowspan=3>
<p align=center style='text-align:center;'><span>项目负责人</span></p>
</td>
<td width=91 style='width:68.2pt;'>
<p align=center style='text-align:center;'><span>姓名</span></p>
</td>
<td width=98 style='width:73.75pt;'>${personName!}</td>
<td width=84 style='width:62.8pt;'>
<p align=center style='text-align:center;'><span>性别</span></p>
</td>
<td width=91 style='width:68.2pt;'>
<#if sex=="男">☑<#else>□</#if>男
<#if sex=="女">☑<#else>□</#if>女
</td>
<td width=91 style='width:68.2pt;'>
<p align=center style='text-align:center;'><span>身份证号</span></p>
</td>
<td width=91 style='width:68.2pt;'>${certId!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>学历</span></p>
</td>
<td>${educationName!}</td>
<td>
<p align=center style='text-align:center;'><span>职称</span></p>
</td>
<td>${titleName!}</td>
<td>
<p align=center style='text-align:center;'><span>工作单位</span></p>
</td>
<td>${appUnitName!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>固定电话</span></p>
</td>
<td>${telephone!}</td>
<td>
<p align=center style='text-align:center;'><span>手机号码</span></p>
</td>
<td>${mobile!}</td>
<td>
<p align=center style='text-align:center;'><span>电子邮箱</span></p>
</td>
<td>${email!}</td>
</tr>
<tr>
<td rowspan=2>
<p align=center style='text-align:center;'><span>项目联系人</span></p>
</td>
<td>
<p align=center style='text-align:center;'><span>姓名</span></p>
</td>
<td>${linkName!}</td>
<td>
<p align=center style='text-align:center;'><span>工作单位</span></p>
</td>
<td colspan=3>${linkUnit!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>手机号码</span></p>
</td>
<td>${linkMobile!}</td>
<td>
<p align=center style='text-align:center;'><span>电子邮箱</span></p>
</td>
<td colspan=3>${linkEmail!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>项目执行期</span></p>
</td>
<td colspan=3>${(startDate?string('yyyy年MM月'))!}至${(endDate?string('yyyy年MM月'))!}</td>
<td>
<p align=center style='text-align:center;'><span>项目组人数</span></p>
</td>
<td colspan=2>${members?size}</td>
</tr>
<tr style='height:51.6pt'>
<td>
<p align=center style='text-align:center;'><span>所属技术领域</span></p>
</td>
<td colspan=6>${technicalField!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>国标学科</span></p>
</td>
<td colspan=6>${knowledgeName!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>科技报告</span></p>
</td>
<td>
<p align=center style='text-align:center;'><span>年度报告</span></p>
</td>
<td>${annualTechnologyReport!}份</td>
<td>
<p align=center style='text-align:center;'><span>中期技术报告</span></p>
</td>
<td>${midTechnicalReport!}份</td>
<td>
<p align=center style='text-align:center;'><span>最终技术报告(必填)</span></p>
</td>
<td>${finalTechnicalReport!}份</td>
</tr>
<tr style='height:51.6pt'>
<td>
<p align=center style='text-align:center;'><span>项目摘要(300字以内)</span></p>
</td>
<td colspan=6>${projAbstract!}</td>
</tr>
<tr>
<td>
<p align=center style='text-align:center;'><span>项目投入</span></p>
</td>
<td colspan=6>${totalFunding!}万元(申请自治区资金${govFunding!}万元,单位自筹${selfFunding!}万元,其他${otherFunding!}万元,)</td>
</tr>
<tr style='height:71.6pt'>
<td>
<p align=center style='text-align:center;'><span>成果形式</span></p>
</td>
<td colspan=6>${resultsStr!}</td>
</tr>
</table>
</div>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=624 style='width:468.0pt;border-collapse:collapse;'>
<tr style='height:33.1pt'>
<td>
<p style='line-height:100%'><b><span>一、国内外研究进展</span></b></p>
</td>
</tr>
<tr style='height:51.9pt'>
<td>${researchProgress!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>二、研发内容</span></b></p>
</td>
</tr>
<tr style='height:98.5pt'>
<td>${researchContent!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>三、研究方法和技术路线</span></b></p>
</td>
</tr>
<tr style='height:98.5pt'>
<td>${researchPlan!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>四、创新点</span></b></p>
</td>
</tr>
<tr style='height:51.9pt'>
<td>${mainFeatures!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>五、先进性</span></b></p>
</td>
</tr>
<tr style='height:51.9pt'>
<td>${progressiveness!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>六、申报单位、参与单位科研条件支撑状况</span></b></p>
</td>
</tr>
<tr style='height:51.9pt'>
<td>${supportingConditions!}</td>
</tr>
<tr style='height:32.35pt'>
<td>
<p style='line-height:100%'><b><span>七、负责人及研究团队的科研水平及前期研究基础</span></b></p>
</td>
</tr>
<tr style='height:52.4pt'>
<td>${memResume!}</td>
</tr>
</table>
</div>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=627 style='width:470.0pt;border-collapse:collapse;'>
<tr>
<td>
<p style='line-height:100%'><b><span>八、预期目标</span></b></p>
</td>
</tr>
<tr style='height:33.85pt'>
<td>
<p style='line-height:100%'><span>(一)技术指标</span></p>
</td>
</tr>
<tr style='height:39.5pt'>
<td>${technologyTarget!}</td>
</tr>
<tr style='height:66.3pt'>
<td>
<p style='line-height:100%'><span>(二)经济指标</span></p>
</td>
</tr>
<tr style='height:58.5pt'>
<td>${economyTarget!}</td>
</tr>
<tr style='height:58.5pt'>
<td>
<p style='line-height:100%'><span>(三)成果指标</span></p>
</td>
</tr>
<tr style='height:58.5pt'>
<td>${achievementTarget!}</td>
</tr>
<tr style='height:62.95pt'>
<td>
<p style='line-height:100%'><span>(四)社会效益</span></p>
</td>
</tr>
<tr style='height:55.1pt'>
<td>${socialBenefit!}</td>
</tr>
<tr>
<td>
<p style='line-height:150%'><span>其他目标与考核指标(对于难以采取上述表格细化的项目目标及其考核指标,可在此细化填写,限1000字以内。)</span></p>
</td>
</tr>
<tr style='height:16.45pt'>
<td>
<p style='line-height:150%'>
<span>
1.“项目目标”,应从以下方面明确描述:
(1)项目研发主要针对什么问题和需求;
(2)将要解决哪些科学问题、突破哪些核心/共性/关键技术;
(3)预期成果;
(4)成果将以何种方式应用在哪些领域/行业/重大工程等,并拟在科技、经济、社会、等方面发挥何种的作用和影响。
2.“对应的课题(任务)”,课题任务的主要成果,指将由项目内哪些课题(任务)支撑取得某项成果。
3.“考核指标”,指相应成果的数量指标、技术指标、质量指标、应用指标和产业化指标等,其中,数量指标可以为论文、专利、产品等的数量;技术指标可以为关键技术、产品的性能参数等;质量指标可以为产品的质量提升等;应用指标可以为成果应用的对象、范围和效果等;产业化指标可以为成果产业化的数量、经济效益等。同时,对各项考核指标需填写立项时已有的指标值/状态以及项目完成时要到达的指标值/状态。同时,考核指标也应包括支撑和服务其他重大科研、经济、社会发展、科学普及需求等方面的直接和间接效益。若某项成果属于开创性的成果,立项时已有指标值/状态可填写“无”,若某项成果在立项时已有指标值/状态难以界定,则可填写“/”。
4.“中期指标”,可根据每个项目管理特点,确定是否填写,阶段目标明确的项目应填写中期指标。
5.“考核方式方法”,应提出符合相关研究成果与指标的具体考核技术方法、证明材料等。
</span>
</p>
<p><span> </span></p>
${otherTarget!}
</td>
</tr>
</table>
</div>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=647 style='width:485.0pt;border-collapse:collapse;'>
<tr style='height:46.7pt'>
<td colspan=8>
<p style='line-height:100%'><b><span>九、项目安排及阶段目标</span></b></p>
</td>
</tr>
<tr style='height:46.7pt'>
<td colspan=2>
<p align=center style='text-align:center;line-height:100%'><b><span>完成时限</span></b></p>
</td>
<td width=235 colspan=3 style='width:176.45pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>进度安排</span></b></p>
</td>
<td colspan=3>
<p align=center style='text-align:center;line-height:100%'><b><span>阶段目标</span></b></p>
</td>
</tr>
<#list stageGoals as goals>
<tr style='height:51.3pt'>
<td colspan=2>
<p align=center style='text-align:center;line-height:100%'>
<span>${(goals.startTime?string('yyyy年MM月dd日'))!}-${(goals.endTime?string('yyyy年MM月dd日'))!}</span>
</p>
</td>
<td colspan=3>
<p style='line-height:120%'><span>${goals.contentInfo!}</span></p>
</td>
<td colspan=3>
<p style='line-height:120%'><span>${goals.target!}</span></p>
</td>
</tr>
</#list>
<tr style='height:46.7pt'>
<td colspan=8>
<p style='line-height:100%'><b><span>十、项目经费构成表 单位:万元</span></b></p>
</td>
</tr>
<tr style='height:92.7pt'>
<td width=77 style='width:57.85pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>年度</span></b></p>
</td>
<td width=119 style='width:89.0pt'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>总 额</span></b></p>
</td>
<td width=116 style='width:87.05pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>自治区公立医院专项资金</span></b></p>
</td>
<td width=68 style='width:51.3pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>自筹资金</span></b></p>
</td>
<td width=94 colspan=2 style='width:70.6pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>盟市财政资金</span></b></p>
</td>
<td width=112 style='width:83.75pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>其他渠道资金</span></b></p>
</td>
<td width=61 style='width:45.45pt;'>
<p align=center style='text-align:center;line-height:12.0pt'><b><span>备 注</span></b></p>
</td>
</tr>
<#list fundCompositions as fun>
<tr style='height:38.1pt'>
<td>${fun.year!}</td>
<td>${fun.totalFund!}</td>
<td>${fun.specialFund!}</td>
<td>${fun.selfFund!}</td>
<td colspan=2>${fun.cityFund!}</td>
<td>${fun.otherFund!}</td>
<td>${fun.remark!}</td>
</tr>
</#list>
<tr style='height:47.45pt'>
<td>
<p align=center style='text-align:center;line-height:12.0pt'><span>合计</span></p>
</td>
<td></td>
<td></td>
<td></td>
<td colspan=2></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
<b>
<span
style='font-size:12.0pt;line-height:150%;font-family:"SimSun";mso-bidi-font-family:"SimSun";mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA'>
<br clear=all style='page-break-before:always;mso-break-type:section-break'>
</span>
</b>
<div class="WordSection2" style='layout-grid:15.6pt'>
<p style='line-height:150%'><b><span>十一、项目参加人员</span></b></p>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=927 style='width:695.45pt;border-collapse:collapse;'>
<tr style='height:53.9pt'>
<td width=52 style='width:38.85pt;'>
<p align=center style='text-align:center'><b><span>序号</span></b></p>
</td>
<td width=79 style='width:59.0pt;'>
<p align=center style='text-align:center'><b><span>姓名</span></b></p>
</td>
<td width=39 style='width:29.35pt;'>
<p align=center style='text-align:center'><b><span>性</span></b></p>
<p align=center style='text-align:center'><b><span>别</span></b></p>
</td>
<td width=39 style='width:29.35pt;'>
<p align=center style='text-align:center'><b><span>年</span></b></p>
<p align=center style='text-align:center'><b><span>龄</span></b></p>
</td>
<td width=161 style='width:120.65pt;'>
<p align=center style='text-align:center'><b><span>身份证号码</span></b></p>
</td>
<td width=66 style='width:49.8pt;'>
<p align=center style='text-align:center'><b><span>职称</span></b></p>
</td>
<td width=65 style='width:48.6pt;'>
<p align=center style='text-align:center'><b><span>学历</span></b></p>
</td>
<td width=64 style='width:48.0pt;'>
<p align=center style='text-align:center'><b><span>学位</span></b></p>
</td>
<td width=145 style='width:108.6pt;'>
<p align=center style='text-align:center'><b><span>现从事专业</span></b></p>
</td>
<td width=217 style='width:162.9pt;'>
<p align=center style='text-align:center'><b><span>所在单位</span></b></p>
</td>
</tr>
<tr style='height:28.8pt'>
<td colspan=10>
<p><span>负责人</span></p>
</td>
</tr>
<#list members as mem>
<#if mem_index==0>
<tr style='height:27.8pt'>
<td>
<p align=center style='text-align:center'><span>${mem_index+1}</span></p>
</td>
<td>${mem.name!}</td>
<td>${mem.sex!}</td>
<td>${mem.age!}</td>
<td>${mem.certId!}</td>
<td>${mem.titleName!}</td>
<td>${mem.educationName!}</td>
<td>${mem.degreeName!}</td>
<td>${mem.specName!}</td>
<td>${mem.workUnit!}</td>
</tr>
<tr style='height:49.45pt'>
<td colspan=2>
<p><b><span>主要成就、发明及获奖情况</span></b></p>
</td>
<td colspan=8>${awardSituation!}</td>
</tr>
<tr style='height:22.7pt'>
<td colspan=10>
<p><span>参加人</span></p>
</td>
</tr>
<#else>
<tr style='height:22.7pt'>
<td>
<p align=center style='text-align:center'><span>${mem_index+1}</span></p>
</td>
<td>${mem.name!}</td>
<td>${mem.sex!}</td>
<td>${mem.age!}</td>
<td>${mem.certId!}</td>
<td>${mem.titleName!}</td>
<td>${mem.educationName!}</td>
<td>${mem.degreeName!}</td>
<td>${mem.specName!}</td>
<td>${mem.workUnit!}</td>
</tr>
</#if>
</#list>
</table>
</div>
</div>
<b>
<span
style='font-size:12.0pt;line-height:150%;font-family:"SimSun";mso-bidi-font-family:"SimSun";mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA'>
<br clear=all style='page-break-before:always;mso-break-type:section-break'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p style='line-height:150%'><b><span>十二、经费预算 单位:万元</span></b></p>
<table border=1 cellspacing=0 cellpadding=0 style='border-collapse:collapse;'>
<tr style='height:22.7pt'>
<td width=231 style='width:173.35pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>概算科目名称</span></b></p>
</td>
<td width=93 style='width:70.05pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>合计</span></b></p>
</p>
</td>
<td width=116 style='width:87.3pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>申请专项经费</span></b></p>
</td>
<td width=104 style='width:77.9pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>自筹经费</span></b></p>
</td>
<td width=49 style='width:36.6pt;'>
<p align=center style='text-align:center;line-height:100%'><b><span>备注</span></b></p>
</td>
</tr>
<#list budget as bf>
<tr style='height:22.7pt'>
<td>
<p style='line-height:100%'><span>${bf.budgetName!}</span></p>
</td>
<td>${bf.totalBudget!}</td>
<td>${bf.applyFunds!}</td>
<td>${bf.selfFunds!}</td>
<td>${bf.calculationBasis!}</td>
</tr>
</#list>
</table>
<p style='line-height:150%'><b><span>注:预算科目开支范围说明</span></b></p>
<p style='line-height:150%'><span>直接费用:</span></p>
<p style='line-height:150%'><span>(一)设备费,本次在研课题不可购买任何设施设备。</span></p>
<p style='line-height:150%'><span>(二)材料费,指在项目研究开发过程中消耗的各种原材料、辅助材料、低值易耗品等的采购及运输、装卸.整理等费用。</span></p>
<p style='line-height:150%'><span>(三)测试化验加工费,指在项目研究开发过程中支付给外单位(包括项自承担单位内部独立经济核算单位)的检验、测试、化验及加工等费用。</span></p>
<p style='line-height:150%'><span>(四)燃料动力费,指在项目研究开发过程中相关大型仪器设备、专用科学装置等运行发生的可以单独计量的水、电、气、燃料消耗等费用。</span></p>
<p style='line-height:150%'><span>(五)会议/差旅/国际合作与交流费:是指在项目研究开发过程中发生的差旅费、会议费和国际合作与交流表。(本科目支出预算超过直接费用10%需要提供预算测算依据)
会议费指项目研究开发过程中组织召开学术研讨、咨询以及协调项目等会议而发生的费用;
差旅表指项目研究开发过程中开展或参加科学实验(试验)、科学考察、业务调研、学术交流等所发生的外埠差旅费、市内交通费等费用;
国际合作与交流费指项目研究开发过程中项目研究人员出国(境)参加学术交流活动及国(境)外专家来我区所需要的费用。
</span></p>
<p style='line-height:150%'>
<span>(六)出版/文献/信息传播/知识产权事务费,指在项目研究开发过程中,需要支付的出版费、资料费、专用软件购买费、专业技术购买费、文献检索费、专业通信费、专利申请及其他知识产权事务以及科普宣传等费用。</span>
</p>
<p style='line-height:150%'><span>(七)劳务费,指支付给参与项目实施的硕士研究生、博士生、访问学者以及项目聘用的研究人员、科研辅助人员等劳务费,以及临时聘用人员的社会保险补助费用。</span>
</p>
<p style='line-height:150%'><span>(八)咨询费,指在项目研究开发过程中支付给临时聘请的咨询专家的费用。</span></p>
<p style='line-height:150%'><span>(九)其他支出,指与项目研究开发相关且不能列入上述科目的其他必要费用。
间接费用:是指承担项目承担单位在组织实施项目过程中发生的,无法在直接费用中列支的相关费用。主要包括项目承担单位为项目研究开发提供的现有仪器设备及房屋使用折旧,水、电、气、暖消耗,有关管理费用的补助支出,以及绩效支出等。间接费用使用分段超额累退比例法计算并实行总额控制,核定比例按照不超过直接费用扣除设备购置费的一定比例核定:500
万元以下(包括 500 万
元)按20%核定; 500万元至 1000 万元(包括1000 万元)按15%核定:1000万元以上按13%核定。
</span></p>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p style='line-height:150%'>
<b><span>十三、材料明细表</span></b>
<span>(只填写拨款部分)</span>
</p>
<table border=1 cellspacing=0 cellpadding=0 style='border-collapse:collapse;'>
<tr style='height:22.7pt'>
<td width=171 style='width:128.6pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>物资名称</span></b></p>
</td>
<td width=82 style='width:61.8pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>规格型号</span></b></p>
</td>
<td width=72 style='width:54.0pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>单价</span></b></p>
<p align=center style='text-align:center;line-height:120%'><b><span>(万元)</span></b></p>
</td>
<td width=49 style='width:36.6pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>数量</span></b></p>
</td>
<td width=71 style='width:53.4pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>金额</span></b></p>
<p align=center style='text-align:center;line-height:120%'><b><span>(万元)</span></b></p>
</td>
<td width=118 style='width:138.4pt;'>
<p align=center style='text-align:center;line-height:120%'><b><span>用途</span></b></p>
</td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style='height:22.7pt'>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<p style='line-height:150%'><b><span style='font-family:"SimSun"'>十四、单位意见</span></b></p>
<table border=1 cellspacing=0 cellpadding=0 style='width:472.85pt;border-collapse:collapse;'>
<tr style='height:82.8pt'>
<td width=144 style='width:108.25pt;'>
<p align=center style='text-align:center;line-height:150%'><span> </span></p>
<p align=center style='text-align:center;line-height:150%'><span style='font-family:"SimSun"'>项目名称</span>
</p>
</td>
<td style='width:366.6pt;'>
<p align=center style='text-align:center;line-height:150%'><span> </span></p>
</td>
</tr>
<tr style='height:336.55pt'>
<td colspan=2>
<p style='line-height:150%;text-indent:12.0pt;'><span style='font-family:"SimSun"'>申报单位意见</span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%'><span> </span></p>
<p style='line-height:150%;text-indent:12.0pt;'>
<span style='font-family:"SimSun"'>法人代表(签字或盖章):</span>
<span> </span>
<span style='font-family:"SimSun"'>(单位盖章)</span>
<span> </span>
</p>
<p style='line-height:100%;text-align:right;'>
<span> </span>
<span>年</span><span> </span>
<span>月</span><span> </span>
<span>日</span>
<span> </span>
</p>
</td>
</tr>
</table>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p align=left style='text-align:left;line-height:26.0pt'><b><span>十五、相关附件</span></b></p>
<p style='line-height:150%'><span>1.科研诚信承诺书(必须提供)</span></p>
<p style='line-height:150%'><span>2.承诺书(必须提供)</span></p>
<p style='line-height:150%'><span>3.医学研究伦理审查证明</span></p>
<p style='line-height:150%'>
<span>4.多家单位联合申报的必须提供牵头单位与所有参与单位签署的联合申报协议(协议中应包含项目名称、课题设置、专项经费分配、知识产权归属、项目经费筹集与使用等内容,协议经单位盖章、项目及所有课题负责人签字有效)</span>
</p>
<p style='line-height:150%'><span>5.相关查新报告、前期科研成果、专利等佐证材料(选择提供)</span></p>
<p style='line-height:150%'><span>6.与项目相关的其它证明材料或文件等(选择提供)</span></p>
<table border=1 cellspacing=0 cellpadding=0 style='border-collapse:collapse;'>
<tr>
<td width=95 style='width:70.95pt;'>
<p align=center style='text-align:center;line-height:26.0pt'><b><span>序号</span></b></p>
</td>
<td width=387 style='width:390.3pt;'>
<p align=center style='text-align:center;line-height:26.0pt'><b><span>附件名称</span></b></p>
</td>
<td width=79 style='width:59.2pt;'>
<p align=center style='text-align:center;line-height:26.0pt'><b><span>数量</span></b></p>
</td>
</tr>
<#list fileList as file>
<tr>
<td>
<p align=center style='text-align:center;line-height:26.0pt'><span>${file_index+1}</span></p>
</td>
<td>${file.fileExplain!}</td>
<td>1</td>
</tr>
</#list>
</table>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:20.0pt;font-family:"STZhongsong"'>内蒙古自治区首府地区公立医院高水平临床</span>
</b>
</p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:20.0pt;font-family:"STZhongsong"'>专科建设科技项目申报单位科研诚信承诺书</span>
</b>
</p>
<p align=center style='text-align:center;line-height:22.0pt'><span style='font-family:"SimSun_GB2312"'> </span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span
style='font-family:"SimSun_GB2312"'>我单位根据内蒙古自治区科技计划项目管理办法和指南要求,并在认真阅读理解内蒙古自治区科技计划经费预算管理相关文件及有关财务规章制度基础上,自愿提交项目(课题)申报材料。在此郑重承诺:本单位已就所申报材料全部内容的真实性、完整性以及各项数据的准确性进行审核,不存在科研不端行为、违反科研伦理和虚假、虚高编报项目预算行为;申报材料符合《中华人民共和国保守国家秘密法》和《科学技术保密规定》等相关法律法规。在参与首府地区公立医院高水平临床专科建设科技项目申报、评审、立项、实施、验收过程中,遵守有关评审规则和工作纪律,杜绝以下行为:</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(一)采取贿赂或变相贿赂、造假、剽窃、故意重复申报等不正当手段获取科技项目承担资格。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(二)以任何形式探听未公开的评审专家名单及其他评审过程中的保密信息,干扰评审或可能影响评审公正性的活动。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(三)不如实填写《任务书》;实施过程中,随意降低目标任务和约定要求;把任务转包,分包他人</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(四)隐瞒违背科研诚信要求的行为,不上报,不处理,不配合科研不端行为调查处理工作。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(五)推脱,拒绝或不配合科技项目现场监督检查工作。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(六)虚构、伪造科研成果、证件、协议书、审计报告等验收材料,或以实施周期外、不相关的成果冲抵交差</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(七)其它违反财经纪律和相关管理规定的行为。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span
style='font-family:"SimSun_GB2312"'>如有违反,本单位愿接受相关部门做出的各项处理决定,包括但不限于取消项目(课题)承担资格,追回项目(课题)经费,向社会通报违规情况,一定期限内取消科技项目申报资格,记入科研诚信严重失信行为数据库以及接受相应的党纪政纪处理等。</span>
</p>
<p><span> </span></p>
<table border=0 cellspacing=0 cellpadding=0 style='width:100%;border-collapse:collapse;'>
<tr style="height: 22.7pt;">
<td style='width:30%;'>
<p align=center style='text-align:center;'><span>承诺单位</span></p>
</td>
<td style='width:70%;'>
<p align=center style='text-align:center;'><span>单位负责人签字:</span></p>
</td>
</tr>
<tr style="height: 22.7pt;">
<td>
<p align=center style='text-align:center;'><span>(公章)</span></p>
</td>
<td>
<p align=center style='text-align:center;'><span>年 月 日</span></p>
</td>
</tr>
</table>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:20.0pt;font-family:"STZhongsong"'>
内蒙古自治区首府地区公立医院高水平临床
</span>
</b>
</p>
<p align=center style='text-align:center'>
<b>
<span style='font-size:20.0pt;font-family:"STZhongsong"'>
专科建设科技项目申报人科研诚信承诺书
</span>
</b>
</p>
<p align=center style='text-align:center;line-height:22.0pt'>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
本人在认真阅读理解内蒙古自治区科研经费预算管理相关文件及有关财务规章制度基础上,自愿提交项目(课题)申报材料。本人在此郑重承诺:所申报材料内容真实有效,不存在科研不端、违反科研伦理行为和虚假、虚高编报项目预算行为;申报材料符合《中华人民共和国保守国家秘密法》和《科学技术保密规定》等相关法律法规。在参与内蒙古自治区科技项目申报、评审、立项、实施、验收过程中,遵守有关评审规则和工作纪律,杜绝以下行为:
</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(一)采取造假、剽窃、故意重复申报等不正当手段获取科技项目承担资格。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(二)以任何形式探听未公开的评审专家名单及其他评审过程中的保密信息,干扰评审或可能影响评审公正性的活动。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(三)在实施过程中,随意降低目标任务和约定要求。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(四)抵触、不配合科研不端行为调查工作。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(五)以次充好,虚构科研成果、证件、协议书、审计报告等验收材料,或以实施周期外、不相关的成果冲抵交差。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>(六)其它违反财经纪律和相关管理规定的行为。</span>
</p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
如有违反,本人愿接受相关部门做出的各项处理决定,包括但不限于取消项目(课题)承担资格,追回项目(课题)经费,向社会通报违规情况,一定期限内取消科技项目申报资格,记入科研诚信严重失信行为数据库以及接受相应的党纪政纪处理等。
</span>
</p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>项目负责人签字:</span>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>年</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>月</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>日</span>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p align=center style='text-align:center'><b><span
style='font-size:20.0pt;font-family:"STZhongsong"'>机构资金匹配承诺书</span></b></p>
<p align=center style='text-align:center'>
<span style='font-family:"SimSun_GB2312"'>(机构填写)</span>
</p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p style='text-indent:24.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
我单位承诺为内蒙古自治区首府地区公立医院高水平临床专科建设科技项目<span
style="text-decoration:underline"> </span>
提供<span style="text-decoration:underline"> </span>万元配套经费。(如没有单位匹配资金可不填此项)
</span>
</p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='text-indent:24.0pt;font-family:"SimSun_GB2312"'>特此承诺!</span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
单位名称(公章):
</span>
<span
style="text-decoration:underline"> </span>
</p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
法定代表人(签章):
</span>
<span style="text-decoration:underline"> </span>
</p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>年</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>月</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>日</span>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>
项目负责人(签章):
</span>
<span style="text-decoration:underline"> </span>
</p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p style='text-align: right;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>年</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>月</span>
<span style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>日</span>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
</div>
<b>
<span>
<br clear=all style='page-break-before:always'>
</span>
</b>
<div class=WordSection1 style='layout-grid:15.6pt'>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p align=center style='text-align:center'><b>
<span style='font-size:20.0pt;font-family:"STZhongsong"'>医学伦理审查证明</span></b>
</p>
<p><b><span style='font-family:"SimSun_GB2312"'> </span></b></p>
<p style='text-indent:8.0pt;line-height:20.0pt'>
<span style='font-family:"SimSun_GB2312"'>编号:</span>
<span
style='font-family:"SimSun_GB2312"'> </span>
<span style='font-family:"SimSun_GB2312"'>日期</span>
<span style='font-family:"SimSun_GB2312"'> </span>
</p>
<table border=1 cellspacing=0 cellpadding=0 style='width:100%;border-collapse:collapse;'>
<tr>
<td colspan=2>
<span style='font-family:"SimSun_GB2312"'>项目名称:</span>
</td>
</tr>
<tr>
<td width=284 style='width:50%;'>
<span style='font-family:"SimSun_GB2312"'>项目负责人:</span>
</td>
<td width=284 style='width:50%;'>
<span style='font-family:"SimSun_GB2312"'>身份证号</span>
</td>
</tr>
<tr>
<td>
<span style='font-family:"SimSun_GB2312"'> 单位名称:</span>
</td>
<td></td>
</tr>
<tr style='height:46.7pt'>
<td colspan=2>
<p><span style='font-family:"SimSun_GB2312"'>医学伦理委员会审查材料</span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'>□实验方案 □知情同意书 □其他资料:</span></p>
</td>
</tr>
<tr>
<td colspan=2>
<p><span style='font-family:"SimSun_GB2312"'>涉及人的生物医学研究内容和研究方案摘要:</span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
<p><span style='font-family:"SimSun_GB2312"'> </span></p>
</td>
</tr>
<tr style='height:30.7pt'>
<td colspan=2>
<p><span style='font-family:"SimSun_GB2312"'>医学伦理委员会审查意见:</span></p>
<p style='text-indent:24.0pt;'>
<span style='font-family:"SimSun_GB2312"'>
医学伦理委员会根据关于涉及人的生命科学和医学研究伦理审查办法等伦理原则,已经对该项目提交的文件进行了初始审查,认为符合相关法律法规,同意
<span
style="text-decoration:underline">“ ”</span>
的科研设计(包括受试者知情同意书)的内容,同意用于内蒙古自治区首府地区公立医院高水平临床专科建设科技项目研究。
</span>
</p>
</td>
</tr>
</table>
<p><span style='font-family:"SimSun_GB2312"'>备注:各单位伦理委员会可以出具本单位有效医学伦理审查证明</span></p>
</div>
</body>
</html>