detailproject.jsp
41 KB
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
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String contextPath = request.getContextPath();
String title="";
String create="";
String projectId="";
String type="";
String stats="";
String layerid="";
String coverage="";
if(request.getParameter("layerid")!=null){
layerid =request.getParameter("layerid");
}
if(request.getParameter("coverage")!=null){
coverage =request.getParameter("coverage");
}
if(request.getParameter("titleEncode")!=null){
title = java.net.URLDecoder.decode(
request.getParameter("titleEncode"), "UTF-8");
}
if(request.getParameter("create")!=null){
create = java.net.URLDecoder.decode(
request.getParameter("create"), "UTF-8");
}
if(request.getParameter("projectId")!=null){
projectId = java.net.URLDecoder.decode(
request.getParameter("projectId"), "UTF-8");
}
if(request.getParameter("type")!=null){
type = java.net.URLDecoder.decode(
request.getParameter("type"), "UTF-8");
}
if(request.getParameter("stats")!=null){
stats = java.net.URLDecoder.decode(
request.getParameter("stats"), "UTF-8");
}
/*
if (stats == "correctionproject"){
getRoleChildrenPrivilege("补正项目详情页");
}*/
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
<%=title%>
</title>
<link rel="shortcut icon" type="image/x-icon" href="../../image/index/logo5.png" media="screen" />
<!--hyh 新增 2017、9、30-->
<!-- <link href="../../css/font-awesome/font-awesome.min.css" rel="stylesheet" /> -->
<link rel="stylesheet" href="/frontweb/css/font-awesome/font-awesome.css" />
<link rel="stylesheet" href="/frontweb/libs/layui-v2.5.5/css/layui.css">
<link rel="stylesheet" href="/frontweb/libs/layui_ext/dtree/dtree.css">
<link rel="stylesheet" href="/frontweb/libs/layui_ext/dtree/font/dtreefont.css">
<link href="../../common/css/attachment.css" rel="stylesheet" />
<link href="../../libs/zui/css/zui.min.css" rel="stylesheet" />
<link href="../../libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="../../common/css/common.css" rel="stylesheet" />
<link href="../../common/css/iframe-content.css" rel="stylesheet" />
<!-- FIXME: -->
<!-- <link href="../../libs/jedate2/skin/jedate.css" rel="stylesheet" /> -->
<link href="../../libs/jqueryWeui/weui.min.css" rel="stylesheet" />
<link href="../../libs/jqueryWeui/jquery-weui.css" rel="stylesheet" />
<link href="../../css/index/indexSearch.css" rel="stylesheet" />
<link href="../../../cmp-model-website/formdesigner/3.0/run.css" rel="stylesheet" />
<!-- lhy 2018-11-29 添加用于实现证书可调打印控件 Lodop -->
<script src="../../libs/Lodop/LodopFuncs.js"></script>
<!-- lhy 2018-11-29 添加用于实现证书可调打印控件 adjustablePrint.js-->
<script src="../../js/projecttask/adjustablePrint.js"></script>
<script src="../../libs/jquery/jquery.min.js"></script>
<script src="/frontweb/libs/layui-v2.5.5/layui.js"></script>
<script src="../../libs/jquery/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="../../libs/jqueryWeui/jquery-weui.js" type="text/javascript"></script>
<script src="../../common/js/config.js"></script>
<script src="../../common/js/global/global.localStorage.js"></script>
<script src="../../common/js/global/global.modelctls.js"></script>
<script src="../../view/reviewmanage/resultreview/js/layui_ext/dtree/dtree.js"></script>
<script src="../../common/js/processBar/js/processBar.js"></script>
<script src="../../common/js/global/global.js"></script>
<script src="../../common/js/global/global.enums.js"></script>
<script src="../../libs/jquery/jquery.cookie.js"></script>
<!--获取用户角色-->
<script src="../../js/getRoles.js"></script>
<script src="../../js/projecttask/detailproject.js"></script>
<script src="../../common/js/global/json2.js"></script>
<script src="../../common/js/global/global.formnew.js"></script>
<script src="../../common/js/resourceAuthory.js"></script>
<script src="../../common/js/tinyServerConfig.js"></script>
<script src="../../common/js/sp_attachmentoperation.js"></script>
<script src="../../common/js/checkfktoen.js"></script>
<script src="../../js/common.js"></script>
<script type="text/javascript">
var global = global || {};
global = global || {};
global.contextPath = '<%=contextPath%>';
</script>
<style type="text/css">
::-webkit-scrollbar {
width: 0;
height: 0;
}
::-ms-scrollbar {
width: 0;
height: 0;
}
#iFrame_div {
overflow: auto;
}
.layui-layer-content table {
text-align: center;
}
.div-title {
margin-top: 0px;
padding-bottom: 8px;
}
.div-right-content-item ul li {
float: none;
}
.div-attachment-path-history ul li {
float: left;
}
.reportlsit li {
float: none !important;
}
.button-fix {
margin-left: 0px !important;
width: 100%;
}
.otherbtn {
background-color: #0096eb;
color: white;
border-radius: 4px;
margin-left: 100px;
margin-right: 100px;
font-size: 18px;
}
.otherbtn:hover {
background-color: white;
color: #0096eb;
}
.otherbtn:hover span {
color: #0096eb;
}
.otherbtn span {
color: white;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
cursor: default;
background-color: #fff;
border: none;
border-bottom-color: transparent;
font-family: '微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
font-weight: 700;
font-style: normal;
color: #179BF0;
}
.nav>li>a {
display: inline;
}
.nav-tabs>li>a:hover {
border-color: white;
}
.nav>li>a:focus,
.nav>li>a:hover {
text-decoration: none;
background-color: white;
}
.popover {
max-width: 550px;
}
.nav-tabs {
border-bottom: none;
margin-top: 20px;
}
.nav>li>a {
padding: 0px;
}
.fromcss {
line-height: 50px;
}
.fromcss p {
border-bottom: 1px solid #dadada;
margin: 0 10px 0 10px;
}
.fromcss:HOVER {
cursor: pointer;
background: #dadada;
}
.reportcss {
line-height: 50px;
}
.reportcss p {
border-bottom: 1px solid #dadada;
margin: 0 10px 0 10px;
}
.reportcss:HOVER {
cursor: pointer;
background: #dadada;
}
.bigmap {
background: #353535;
position: absolute;
bottom: 30px;
height: 30px;
right: 0px;
cursor: pointer;
opacity: 0.8;
color: white;
width: 80px;
padding-left: 12px;
padding-top: 3px;
}
.layui-tab-footer-button {
text-align: right;
margin-top: 10px;
}
.layui-btn {
border-radius: 5px;
}
.layui-tab-title{
display: -webkit-flex; /* Safari */
flex-direction: row;
display: flex;
justify-content:space-between;
align-items: center;
}
.layui-tab-title li {
width: 100%;
}
.layui-tab-titile3 li{
width: 33%;
}
.pro_content {
width: 100%;
height: 100%;
}
/*修改按钮点击后的样式*/
/*.btn-info:focus{*/
/* outline: 0;*/
/* }*/
#saveBtn:focus{
outline: 0;
}
#mbSend:focus{
outline: 0;
}
#returnFile:focus{
outline: 0;
}
#btn_correct:focus{
outline: 0;
}
#btn_correctEnd:focus{
outline: 0;
}
#returned:focus{
outline: 0;
}
#jumpbtn:focus{
outline: 0;
}
#suspension:focus{
outline: 0;
}
#flowLog:focus{
outline: 0;
}
#alterLog:focus{
outline: 0;
}
#lifeCircleBtn:focus{
outline: 0;
}
#prjectbtnSh:focus{
outline: 0;
}
#loadProject:focus{
outline: 0;
}
#backbtn:focus{
outline: 0;
}
#uploadFile:focus{
outline: 0;
}
#createFolder:focus{
outline: 0;
}
#importGhcgBtn:focus{
outline: 0;
}
#yjzjBtn:focus{
outline: 0;
}
#AxisMapOther:focus{
outline: 0;
}
#AxisMap:focus{
outline: 0;
}
#MaxMap:focus{
outline: 0;
}
#RefreshMap:focus{
outline: 0;
}
#project_ywxt_saveSuggest:focus{
outline: 0;
}
#right_part{
margin-left: 0 !important;
}
#downloadBM button{
border-radius: 2px;
background-color: white;
border: 1px solid #0096eb;
color: #0096eb;
cursor: pointer;
padding: 4px 10px;
}
#downloadBM button:hover{
background-color: #0096eb;
color: white;
}
</style>
<script type="text/javascript">
function treeout() {
$('#treeimg').attr("src", "../../image/projecttask/tree.png")
}
function treeover() {
$('#treeimg').attr("src", "../../image/projecttask/tree1.png")
}
function keyupFullScreen() {
var keyNum = event.keyCode;
if (keyNum == 122) {
if (w == 1920) {
if (window.outerHeight == screen.height && window.outerWidth == screen.width) {
$("#mCSB_1_scrollbar_vertical").removeClass("mCSB_scrollTools");
} else {
$("#mCSB_1_scrollbar_vertical").addClass("mCSB_scrollTools");
}
}
}
}
</script>
</head>
<body onkeyup="keyupFullScreen()" style="padding:0px;min-width: 1366px;" onUnload="closeNews();">
<div id="sendDivs" style="display:none;">
<div style="margin-left: 20px" id="tjrs">请填写退件意见:</div>
<textarea rows="8px" cols="52px" autofocus=true id="sendTextarea" placeholder="请输入内容"></textarea>
</div>
<div id="htyj" style="display:none;">
<div style="width: 565px;max-height: 260px;margin-left: 18px;margin-top:10px;overflow-y: auto;" id="htyjxx">
</div>
<div>
<div style="margin-left:18px;font-size: 15px">请填写回退意见:</div>
<textarea autofocus=true id="htyjTextarea" placeholder="请输入内容"></textarea>
</div>
</div>
<!--nav start -->
<div id="nav">
<div class="headbg row m-b-0" style="box-sizing: border-box;padding-left: 15px;">
<div class="headbg-logo col-xs-12">
<div id="HEADERLOGO"></div>
<!-- <img class="div-head-title mCS_img_loaded documentFormDetail" src="../../image/index/title05_nngh.png" style="margin-top: 0px;"> -->
<jsp:include page="../index/indexSearch.jsp"></jsp:include>
</div>
</div>
<div class="data-operation">
<div class="button-operation button-fix shadow-z-1" style="width: 100%;height:60px;">
<!-- hyh 新增行内样式 高度,宽度 2017、9、23 -->
<div style="width: 1350px;margin: 0 auto; display: flex;" id="project_nav_button">
<button id="saveBtn" class="btn btn-info " type="button" onclick="saveproject()"
style="display:none;">
<span class="glyphicon glyphicon-floppy-disk"></span> 保存
</button>
<button id="mbSend" class="btn btn-info" type="button" onclick="sendClickBefore()"
style="display:none;">
<span class="glyphicon glyphicon-send" style="font-size: 15px"></span>发送
</button>
<button id="returnFile" type="button" action="intrust" class="btn btn-info" onclick="mbReject()"
style="display:none;">
<span class="glyphicon glyphicon-retweet" style="font-size: 15px"></span>退件
</button>
<%--<button id="mbFallBack" class="btn btn-info" type="button" onclick="mbFallBack()" style="display:none;">--%>
<%--<span class="glyphicon glyphicon-arrow-left" style="font-size: 15px"></span>回退--%>
<%--</button>--%>
<button id="btn_correct" class="btn btn-info" type="button" onclick="correct(this)" style="display:none;">
<span class="glyphicon glyphicon-arrow-left" style="font-size: 15px"></span>补正材料
</button>
<button id="btn_correctEnd" class="btn btn-info" type="button" onclick="endCorrect()" style="display:none;">
<span class="glyphicon glyphicon-arrow-right" style="font-size: 15px"></span>完成补正
</button>
<button id="returned" class="btn btn-info" type="button" onclick="returned()" style="display:none;">
<span class="glyphicon glyphicon-arrow-left" style="font-size: 15px"></span>退回
</button>
<button id="jumpbtn" class="btn btn-info" type="button" onclick="jumptake()" style="display:none;">
<span class="glyphicon glyphicon-indent-left" style="font-size: 15px"></span>改派
</button>
<button id="suspension" class="btn btn-info" type="button" onclick="suspension()"
style="display:none;">
<span class="glyphicon glyphicon-indent-left" style="font-size: 15px"></span>挂起
</button>
<%--<button id="copyProject" type="button" action="intrust" class="btn btn-info" onClick="copyProjectbtn()" style="display:none;">--%>
<%--<span class="glyphicon glyphicon-duplicate" style="font-size: 15px"></span>项目复制--%>
<%--</button>--%>
<button id="flowLog" type="button" action="intrust" class="btn btn-info"
onclick="openlayer_flowlog()" style="display:none;">
<span class="glyphicon glyphicon-list-alt"></span>流程日志
</button>
<button id="alterLog" type="button" action="intrust" class="btn btn-info"
onclick="openlayer_alterlog()" style="display:none;">
<span class="glyphicon glyphicon-random"></span>操作记录
</button>
<%-- <button id="projectTreebtn" type="button" action="intrust" class="btn btn-info"
onclick="openlayer_projectTree()" style="display:none;">
<span class="glyphicon glyphicon-tree-conifer" style="font-size: 15px"></span>项目树
</button>--%>
<button id="lifeCircleBtn" type="button" action="intrust" class="btn btn-info"
onclick="openlayer_projectLifeCircle()" style="display:none;">
<span class="glyphicon glyphicon-retweet"></span>项目全阶段
</button>
<%--<button id="meansbtn" type="button" action="intrust" class="btn btn-info" onclick="openlayer_related()" style="display:none;">--%>
<%--<span class="glyphicon glyphicon-gift"></span>相关资料--%>
<%--</button>--%>
<button id="prjectbtnSh" type="button" action="intrust" class="btn btn-info" onclick="openBtnSh()"
style="display:none;">
<span class=" icon-comments" style="font-size: 15px"></span>上会
</button>
<button id="deletebtn" type="button" action="intrust" class="btn btn-info" onClick="deleteProcessIns()" style="display:none;">
<span class="glyphicon glyphicon-trash"></span>删除
</button>
<button id="loadProject" type="button" action="intrust" class="btn btn-info"
onClick="loadProjectInfo()" style="display:none;">
<span class="glyphicon glyphicon-play-circle" style="font-size: 15px"></span>续办
</button>
<button id="backbtn" type="button" action="intrust" class="btn btn-info" style="display:none;"
onclick="takeback()">
<span class="glyphicon glyphicon-export"></span>取回
</button>
<%--<button id="backbtn" type="button" action="intrust" class="btn btn-info" style="display:none;" onclick="bouncematter()">--%>
<%--<span class="glyphicon glyphicon-export"></span>退件办结--%>
<%--</button>--%>
<%--<button id="backbtn" type="button" action="intrust" class="btn btn-info" style="display:none;" onclick="entering()">--%>
<%--<span class="glyphicon glyphicon-export"></span>二次录入--%>
<%--</button>--%>
<%--<button id="backbtn" type="button" action="intrust" class="btn btn-info" style="display:none;" onclick="estabish()">--%>
<%--<span class="glyphicon glyphicon-export"></span>网上报建--%>
<%--</button>--%>
<%--<button id="backbtn" type="button" action="intrust" class="btn btn-info" style="display:none;" onclick="mappingRelation()">--%>
<%--<span class="glyphicon glyphicon-export"></span>映射关系--%>
<%--</button>--%>
<%--<button class="btn btn-info " id="downloadRoot" style="display:none" onclick="downloadRootPath()">--%>
<%--<span class="glyphicon glyphicon-save"></span>下载文件--%>
<%--</button>--%>
</div>
<!-- --------------------------指标符合性------------------------- -->
<span class="layui-breadcrumb" style="display: none;">
<a>国土空间规划(2019-2035年)</a>
<a id="project_zb" href="">指标符合性</a>
<a id="project_ghzb" href="">指标符合性</a>
</span>
<button id="project_zbfhx_back" class="layui-btn layui-btn-normal layui-btn-sm"
style="float:right;display: none;">返回</button>
</div>
</div>
</div>
<!-- ----------------------------------指标符合性表格----------------------------------- -->
<div class="pro_content" style="display: none;">
<div class="pro_content_left" style="width: 80%;float: left;margin-left: 1%;">
<table class="layui-table" lay-even lay-size="lg">
<colgroup>
<col width="150">
<col width="200">
<col>
</colgroup>
<thead>
<tr>
<th>序号</th>
<th>指标名称</th>
<th>单位</th>
<th>属性</th>
<th>审查方式</th>
<th>文本上报值</th>
<th>上级下达指标</th>
<th>差值</th>
<th>机审结果</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>常住人口</td>
<td>万人</td>
<td>预期性</td>
<td>--</td>
<td>284</td>
<td>--</td>
<td>--</td>
<td>--</td>
</tr>
<tr>
<td>2</td>
<td>城镇化率</td>
<td>%</td>
<td>预期性</td>
<td>--</td>
<td>50</td>
<td>--</td>
<td>--</td>
<td>--</td>
</tr>
<tr>
<td>3</td>
<td>人均GDP</td>
<td>万元/人</td>
<td>预期性</td>
<td>--</td>
<td>2</td>
<td>--</td>
<td>--</td>
<td>--</td>
</tr>
<tr>
<td>4</td>
<td>全部工业增加率</td>
<td>%</td>
<td>预期性</td>
<td>--</td>
<td>17</td>
<td>--</td>
<td>--</td>
<td>--</td>
</tr>
<tr>
<td>5</td>
<td>现代服务业增加值占服务业比重</td>
<td>%</td>
<td>预期性</td>
<td>--</td>
<td>30</td>
<td>--</td>
<td>--</td>
<td>--</td>
</tr>
</tbody>
</table>
<img src="./img/ghzb.png" alt="" style="display: none;">
</div>
<div class="layui-input-block layui-tab-footer-div">
问题描述
<textarea name="desc" placeholder="请输入内容" class="layui-textarea"></textarea>
协同部门
<textarea name="desc" placeholder="请输入内容" class="layui-textarea"></textarea>
<button class="btn btn-info " type="button" style="margin-right: 0;">
<span class="glyphicon glyphicon-floppy-disk"></span> 保存
</button>
</div>
</div>
<!-- hyh 修改 2017、9、18 <div style="position:absolute;top:160px;"> 将绝对定位改成相对定位-->
<div style="position: absolute;top:0px;bottom:0px;width:100%;">
<div id="bodyContent" style="overflow-y: auto;margin-top: 120px;">
<input id="fileUrl" type="hidden" />
<input id="filename" type="hidden" />
<input id="userId" type="hidden" />
<input id="contentpath" type="hidden" readonly="true" value="<%=contextPath%>" />
<input id="create" type="hidden" readonly="true" value="<%=create%>" />
<input id="pid" type="hidden" readonly="true" value="<%=projectId%>" />
<input id="type" type="hidden" readonly="true" value="<%=type%>" />
<input id="stats" type="hidden" readonly="true" value="<%=stats%>" />
<input id="layerid" type="hidden" readonly="true" value="<%=layerid%>" />
<input id="coverage" type="hidden" readonly="true" value="<%=coverage%>" />
<button id="importCgPackage" style="display: none!important"></button>
<!-- 附件上传和预览变量隐藏域 -->
<!-- <div> -->
<!-- <input id="fileadress" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("fileadress", "")%>" /> --%>
<!-- <input id="fileservice" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("fileservice", "")%>" /> --%>
<!-- <input id="docviewservice" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("docviewservice", "")%>" /> --%>
<!-- <input id="curserver" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("fileservice", "")%>" /> --%>
<!-- <input id="docviewservice" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("docviewservice", "")%>" /> --%>
<!-- <input id="curserver" type="hidden" -->
<%-- value="<%=GlobalContextHolder.getProperty("curserver", "")%>" /> --%>
<!-- </div> -->
<!-- <div> -->
<%-- <input id="txtShowList" type="hidden" value="<%=GlobalContextHolder.getProperty("rpt.fr.show", "")%>"
/> --%>
<%-- <input id="txtFrList" type="hidden" value="<%=GlobalContextHolder.getProperty("rpt.fr.list", "")%>"
/> --%>
<%-- <input id="txtRepory" type="hidden" value="<%=GlobalContextHolder.getProperty("curserver", "")%>"
/> --%>
<!-- </div> -->
<div class="container-fluid" style="background-color: white;
position: relative;
margin:0px auto;
padding-top:8px;
width: 72%">
<input id="title" type="text" hidden="hidden" value="<%=title%>" />
<div id="project_suggest_div" style="display: none;width: 484px">
<div class="layui-tab" lay-filter="filter">
<ul class="layui-tab-title layui-tab-titile3" style="margin-left: -10px;">
<li class="layui-this">附件材料</li>
<li class="pro_fzsc">辅助审查</li>
<li>审查意见</li>
</ul>
<div class="layui-tab-content">
<div class="layui-tab-item layui-show">
</div>
<div class="layui-tab-item">
<!-- TODO:辅助审查 -->
<div class="ghcg_right_footer_right_middle">
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/fzsc_icon-zbfhx.png" alt="指标符合性">
<span>指标符合性</span>
<p><span>审查通过</span></p>
<!-- <button class="layui-btn layui-btn-normal" id="project_zbfhx">
指标符合性
</button>
<span class="ghcg_right_footer_right_middle_ziti_span">已审查</span> -->
</div>
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/fzsc_icon-kjyzx.png" alt="空间一致性">
<span>空间一致性</span>
<p><span>审查通过</span></p>
<!-- <button class="layui-btn layui-btn-normal">
空间一致性
</button>
<span class="ghcg_right_footer_right_middle_ziti_span">未审查</span> -->
</div>
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/fzsc_icon-tsyzx.png" alt="图数一致性">
<span>图数一致性</span>
<p class="unpass"><span>审查未通过</span></p>
<!-- <button class="layui-btn layui-btn-normal">
图数一致性
</button>
<span class="ghcg_right_footer_right_middle_ziti_span">已审查</span> -->
</div>
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/fzsc_icon-qyxtx.png" alt="区域协调性">
<span>区域协调性</span>
<p class="checking"><span>待审查</span></p>
<!-- <button class="layui-btn layui-btn-normal">
区域协调性
</button>
<span class="ghcg_right_footer_right_middle_ziti_span">未审查</span> -->
</div>
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/fzsc_icon-mlfhx.png" alt="名录符合型">
<span>名录符合型</span>
<p class="checking"><span>待审查</span></p>
</div>
</div>
</div>
<div class="layui-tab-item" style="display: none">
<div class="suggest-container">
<div class="suggest-container-content" id="project_suggest">
</div>
</div>
<div class="layui-tab-footer">
<div id="pro_csyj">意见填写</div>
<div class="layui-tab-footer-div" style="display: none"></div>
<div class="layui-input-block layui-tab-footer-div">
<textarea name="desc" placeholder="请输入内容" class="layui-textarea"
id="project_textarea_cs"></textarea>
</div>
<div class="layui-tab-footer-button">
<button id="project_saveSuggest" class="btn btn-info" type="button">
<span class="glyphicon glyphicon-floppy-disk"></span> 提交
</button>
<%--<button id="project_scbg" class="btn btn-info" type="button"
style="margin-right: 0;">
<span class="glyphicon glyphicon-share"></span> 生成报告
</button>--%>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="form"
style="margin: 0 auto;margin-top: 0px;background-color: #fff;float: left;"
class="clearfix">
<!-- 表单 -->
<div id="formPanel" class="div-form col-xs-6"
style="width:815px;margin-left: 0px;margin-top: 0px;height: 666px;padding-right: 0px;padding-left: 0px;">
</div>
</div>
<!-- 报表和材料 -->
<div id="right_part" style="margin-left: 0 !important;">
<%--TODO:wei 下载保密协议--%>
<div id="downloadBM" style="display: none;justify-content: space-between;margin-right: 3px;" class="div-document-content-right" >
<div>
<img src="../../image/projecttask/cl.png"
style="width: 25px;height:25px;margin-top: -5px;">
<span style="color: #268de8;font-weight: 500;font-size: 18px;">保密协议</span>
</div>
<button onclick="download({filename:'/SP/西安市自然资源和规划信息中心保密协议.doc'},event)">下载保密协议</button>
</div>
<!-- FIXME: 命名规范 -->
<!-- -----------------------------------gewan---start ------------------------- -->
<!-- 业务协同 接件 右侧栏 -->
<div id="ywxt_right" class="layui-tab" lay-filter="filterYwxt"
style="display: none; width: 100%;">
<ul class="layui-tab-title">
<li class="layui-this">图表材料</li>
<li class="pro_fzsc">审查意见</li>
</ul>
<div class="layui-tab-content">
<div class="layui-tab-item layui-show"></div>
<div class="layui-tab-item ">
<div class="suggest-container">
<div class="suggest-container-content" id="project_ywxt_suggest"
style="min-height: 300px;max-height: 700px;overflow-y: auto;">
</div>
<div class="layui-tab-footer">
<div id="pro_ywxt_csyj">意见填写</div>
<div class="layui-tab-footer-div" style="display: none"></div>
<div class="layui-input-block layui-tab-footer-div" style="margin-left: 0;">
<textarea name="desc" placeholder="请输入内容" class="layui-textarea"
id="project_ywxt_textarea_cs"></textarea>
</div>
<div class="layui-tab-footer-button">
<button id="project_ywxt_saveSuggest" class="btn btn-info" type="button"
style="margin-right: 0;">
<span class="glyphicon glyphicon-floppy-disk"></span> 提交
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--表单 -->
<div id="form_div" class="div-right-content-item"
style="text-overflow: ellipsis;margin-left: 0;padding: 0;display: none;">
<div style="margin:33px 0 15px 0;">
<img src="../../image/projecttask/baob.png"
style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;">
<span style="color: #268de8;font-weight: 500;font-size: 18px;">表单</span>
</div>
<div id="fromDiv" style="min-height: 102px; height:auto; border: 1px solid rgb(218, 218, 218);
border-radius: 4px; position: relative;">
</div>
</div>
<!-- GIS服务 -->
<div id="browsingGrp" class="div-right-content-item"
style="display: none;text-overflow: ellipsis;width: 100%;margin-left: 0;padding: 0px;">
<div style="margin:33px 0 15px 0;">
<img src="../../image/projecttask/dt.png"
style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;">
<span style="color: #268de8;font-weight: 500;font-size: 18px;">图形浏览</span>
<div style="display: inline-block;float: right;">
<button id="AxisMapOther" class="btn btn-info">辅助选址</button>
<button id="AxisMap" class="btn btn-info" style="display:none">录入坐标</button>
<button id="MaxMap" class="btn btn-info" style="display:none">查看大图</button>
<button id="RefreshMap" class="btn btn-info" style="margin-right: 0;">刷新</button>
</div>
</div>
<div id="ditusrc" style="width: 100%; height: 260px; border: 1px solid rgb(218, 218, 218);
border-radius: 4px;position: relative;">
<!-- src="projectgis.html?no=00-320&layerid=0" -->
<iframe id="gis" style="width: 100%;height:100%;"></iframe>
<!-- <div class="bigmap" onclick="lookmap()">查看大图</div> -->
</div>
</div>
<!-- 报表 -->
<div id="report_div" class="div-right-content-item"
style="display: none;overflow: auto;text-overflow: ellipsis;width: 500px;margin-left: 0px;padding: 0px; margin-bottom: 15px">
<!-- <div class="div-title">报表</div> -->
<div style="margin:33px 0px 15px 0px;">
<img src="../../image/projecttask/baob.png"
style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;">
<span style="color: #268de8;font-weight: 500;font-size: 18px;">报表</span>
</div>
<div id="reportDiv" style="width: 497px; max-height:206px; border: 1px solid rgb(218, 218, 218);
border-radius: 4px; overflow: auto;position: relative;
">
</div>
</div>
<!-- 材料 -->
<div id="project_cl" class="div-document-content-right" style="display: inline-block;width:100%;position: relative;">
<div class="div-title"
style="margin-bottom: 15px;border-bottom: none;padding: 0px;width: 81%;">
<img id="project_icon" src="../../image/projecttask/cl.png"
style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;">
<span id="project_cailiao" style="color: #268de8;font-weight: 500;font-size: 18px;">材料</span>
<div class="btn-group-div" id="pro_btn_group_div">
<!-- 一键质检 -->
<button class="btn btn-info" id="yjzjBtn"
style="display: none;width: 110px;height: 30px;" onclick="qualityInspection()">
一键质检
</button>
<!-- 导入成果 -->
<button class="btn btn-info" id="importGhcgBtn"
style="display: none;width: 110px;height: 30px;" onclick="uploadBtnClick()">
导入规划成果
</button>
<!-- 创建文件夹 -->
<button class="btn btn-info" id="createFolder"
style="display: none;width: 110px;height: 30px;" onclick="adddir2('SP')">
创建文件夹
</button>
<!-- 上传文件 -->
<button class="btn btn-info progress-button" id="uploadFile"
style="display: none;width: 110px;height: 30px;margin-right: -3px;"
onclick="upload_click2('file','SP')" data-style="fill" data-horizontal>
上传文件
</button>
</div>
<form id="_fileForm" enctype="multipart/form-data" accept-charset="gb2312"
style="margin-left: 16px; margin-top: 16px; display: none">
<input id="_upfile" onchange="onchangeFileName2(this)" type="file" name="file"
multiple="true">
</form>
</div>
</div>
<div id="hint" class="div-attachment-hint">
</div>
<!-- 附件 -->
<div id="fj" class="progress" style="display: inline-block; height: 50px;">
<div class="progress-bar" role="progressbar" style="width: 0%;">
</div>
</div>
<div class="div-attachment" id="project_div_attachment" style="margin-top: 0px;">
<div class="div-attachment-insider"></div>
<!-- --------------------------------------- 附件new create by zys 2020/3/11 --------------------------------------- -->
<div class="dtree-container"
style="overflow-y: auto;max-height: 490px;width: 100%">
<ul id="project_fjTree" style="width:100%;padding-left: 0" class="dtree" data-id="0"></ul>
</div>
<ul id="line1" style=" width: 100%"></ul>
<div class="dtree-container"
style="overflow: auto;max-height: 490px;width: 100%">
<ul id="project_bgTree" style="width:100%;padding-left: 0" class="dtree" data-id="0"></ul>
</div>
<!-- ------------------------------------------------ end -------------------------------------------->
</div>
<div id="morebtn" onclick="morelist()" class="silverColor mouse"
style="display:none;height: 40px;line-height: 40px;text-align: center;"
href="javascript:void(0)">
向上收起
<span class="glyphicon glyphicon-arrow-up silverColor"></span>
</div>
<div class="div-no-attachment" id="divNoAttachment"
style="width: 100%;display: none;">
<a href="javascript:void(0)" onclick="upload_click2('file','SP')">上传文件</a>或
<a href="javascript:void(0)" onclick="adddir2('SP')">创建文件夹</a>
</div>
<div class="div-no-attachment" id="noAttachment" style="display:none;width:100%">
无附件材料
</div>
<div class="div-no-attachment" id="noAttachment1" style="display:none;width:100%">
无审查报告
</div>
</div>
<div class="div-document-prompt bluefont" id="divPrompt"
style="display:none;max-height:100%;position:fixed;width:45%;top:40%;left:50%;transform:translate(-50%, -50%)">
<div>
<img style='width:108px;height:99px;' src='../../image/common/tip-logo.png' />
<span style='margin-left:20px;font-size:40px;'>每日提醒:</span>
</div>
<div style='margin-top:53px'>
<span id='content' style='font-size:24px'></span>
</div>
<div style='margin-top:73px'>
<span id='source' style='position:absolute;right:0px;font-size:24px'></span>
</div>
</div>
<div id='countDiv' class="bluefont"
style="display:none;text-align:center;position:fixed;top:10%;left:50%;transform:translate(-50%, 0)">
<span style='font-size:24px'>发送成功!窗口将在
<label id="timeInterval">5</label>秒后关闭!</span>
</div>
<%--<jsp:include page="/common/jsp/footer.jsp"></jsp:include>--%>
</div>
<!-- ----------------------------------------- create by zys 2020/03/06 --------------------------------- -->
<!-- 辅助审查 -->
<iframe id="iFrame_div" src="" width="60%" height="100%" frameborder="no" border="0"
style="display: none;float: left;height: 1000px;overflow: auto;">
</iframe>
<!-- ----------------------------------------- 结束 --------------------------------- -->
</div>
</div>
<!-- 一键质检详情页 start -->
<div id="project_yjzj_detail" class="project-yjzj-detail">
<div class="project-yjzj-detail-header clearfix">
<div class="header-left">
<h3>XX市国土空间总体规划(2019-2035年)</h3>
<p>质检结论
<span style="color: #FF2A1B;">不通过</span>
</p>
</div>
<button class="layui-btn layui-btn-normal back">返回</button>
</div>
<div class="project-yjzj-detail-body">
<div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBriefYjzj">
<ul class="layui-tab-title">
<li class="layui-this sjwzx">数据完整性 (6)</li>
<li>空间数据基本检查 (0)</li>
<li>属性标准性 (0)</li>
<li>空间图形拓扑检查 (5)</li>
<li>表格数据检查 (0)</li>
<li>图书一致性检查 (5)</li>
<li>指标符合性检查 (2)</li>
</ul>
<div class="layui-tab-content">
<div class="layui-tab-item layui-show">
<table id="projectYjzyTableSjwzx" lay-filter="projectYjzyTableSjwzx"></table>
</div>
<div class="layui-tab-item">空间数据基本检查</div>
<div class="layui-tab-item">属性标准性</div>
<div class="layui-tab-item">空间图形拓扑检查</div>
<div class="layui-tab-item">表格数据检查</div>
<div class="layui-tab-item">
<div class="layui-fluid">
<div class="layui-row layui-col-space10">
<div class="layui-col-xs12 layui-col-sm12 layui-col-md5">
<table id="projectYjzyTableBgsjjc" lay-filter="projectYjzyTableBgsjjc"></table>
</div>
<div class="layui-col-xs12 layui-col-sm12 layui-col-md7">
<div class="yjzj-map">
<div class="layui-tab-item">
<table id="projectYjzyTableZbfhxjc" lay-filter="projectYjzyTableZbfhxjc"></table>
</div>
</div>
</div>
</div>
</div>
<!-- end -->
<!-- 复审对话框 -->
<script id="projectFsTpl" type="text/html">
{{# layui.each(d, function (index, item) { }}
{{# if(item.sf === '1') { }}
<!-- 他人 -->
<div class="suggest-chat-view-other">
<!--TODO:src为base64-->
<img src="/frontweb/image/reviewmanage/icon_page.png" alt="头像" />
<div>
<p>{{ item.username }}</p>
<div class="chat-block">
<div class="chat-block-content">
{{ item.yjnr }}
</div>
<div class="chat-block-footer clearfix">
<span class="pro-self-clsj">{{ item.createtime }}</span>
<span>{{ item.lchj }}</span>
</div>
</div>
<span class="chat-point"></span>
</div>
</div>
{{# } else { }}
<div class="suggest-chat-view-self">
<!--TODO:src为base64-->
<img src="/frontweb/image/reviewmanage/icon_page.png" alt="头像" />
<div>
<p>{{ item.username }}</p>
<div class="chat-block">
<div class="chat-block-content">
{{ item.yjnr }}
</div>
<div class="chat-block-footer clearfix">
<span class="pro-self-clsj">{{ item.createtime }}</span>
<span>{{ item.lchj }}</span>
</div>
</div>
<span class="chat-point"></span>
</div>
</div>
{{# } }}
{{# }) }}
</script>
<!-- 成果上报进度信息 -->
<script id="projectCgsbJdxx" type="text/html">
{{# layui.each(d, function (index, item) { }}
<li class="layui-timeline-item">
<i class="layui-icon layui-timeline-axis"></i>
<div class="layui-timeline-content layui-text">
{{# if(item.clsj){ }}
<span style="font-size: 14px">{{ item.clsj }} {{ item.clr }}({{ item.cz }})</span>
<p style="font-size: 14px">{{ item.dqhj }}</p>
{{# } else { }}
<span style="font-size: 14px">{{ item.clr }}({{ item.cz }}) {{ item.dqhj }}</span>
{{# } }}
</div>
</li>
{{# }) }}
</script>
<!-- ------------------------------------------- 一键质检 ---------------------------------------------- -->
<script type="text/html" id="yjzjTableTpl">
<div style="padding: 10px;">
<form class="layui-form">
<div class="layui-form-item">
<div class="layui-inline">
<label class="layui-form-label width-100">成果类型</label>
<div class="layui-input-inline">
<select name="cglx" lay-verify="required">
<option value="0">总体规划</option>
</select>
</div>
</div>
<div class="layui-inline">
<label class="layui-form-label width-100">规划范围</label>
<div class="layui-input-inline">
<select name="ghfw" lay-verify="required" lay-search lay-filter="formDemoSelect">
{{# layui.each(d, function(index, item) { }}
<option value="{{ item.qydm }}">{{ item.qymc }}</option>
{{# }) }}
</select>
</div>
</div>
<div class="layui-inline">
<div class="layui-input-inline">
<a href="javascript:;" type="button" class="btn btn-info" id="yjzjSubmitBtn" lay-submit lay-filter="formDemo"><span class="glyphicon glyphicon-off"></span>执行</a>
<button type="reset" class="btn btn-info"><span class="glyphicon glyphicon-ban-circle"></span>取消</button>
</div>
</div>
</div>
</form>
<table id="yjzjTable"></table>
<div style="margin-top: 30px;" id="yjzjFooter">
<p style="line-height: 30px;display: inline-block;">检查结论:
</p>
<button type="button" style="margin-left: 30px;" class="btn btn-info show-detail"><span class="glyphicon glyphicon-list-alt"></span>查看详情</button>
<button type="button" style="margin-left: 30px;" class="btn btn-info get-result" onclick="createReport()"><span class="glyphicon glyphicon-share"></span>生成报告</button>
</div>
</div>
</script>
<!-- --------------------------------------------- TODO:辅助审查 ---------------------------------------------------- -->
<script type="text/html" id="projectFzscTpl">
{{# layui.each(d, function (index, item) { }}
<div class="ghcg_right_footer_right_middle_ziti">
<img src="/frontweb/image/projecttask/{{ item.nameStr }}" alt="{{ item.name }}">
<span>{{ item.name }}</span>
<p class="{{ item.result == '待审查' ? 'checking' : 'unpass' }}"><span>{{ item.result }}</span></p>
</div>
{{# }) }}
</script>
</body>
<!-- <script src="../../common/js/authentication.js"></script> -->
<script src="../../common/js/dMCustomScrollbar.js"></script>
<script src="../../common/js/sp_attachmentoperation.js"></script>
<jsp:include page="projectDetailinclude.jsp"></jsp:include>
<script type="text/javascript">
//hzw 新增 2018/2/28 标识审批详情页
$("#searchType").val("SP");
</script>
</html>