ff611f2931f2c2b1e6c20ef6f4f4080f80f8cf90.svn-base
70.5 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
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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>受理申请管理</title>
<meta name="decorator" content="default"/>
<script type="text/javascript" src="${ctxStatic}/base64/base64.js"></script>
<script type="text/javascript" src="${ctxStatic}/base64/js_pop.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#name").focus();
$("#inputForm").validate({
submitHandler: function(form){
loading('正在提交,请稍等...');
form.submit();
},
errorContainer: "#messageBox",
errorPlacement: function(error, element) {
$("#messageBox").text("输入有误,请先更正。");
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
error.appendTo(element.parent().parent());
} else {
error.insertAfter(element);
}
}
});
$("#szlx1").hide();
});
$(function(){
//此方法用来解决iframe高度自适应的问题;
$("#mortgageframe").load(function(){
$(this).height($(this).contents().find("#contentTable").height() + 120);
});
$("#gjzwframe").load(function(){
$(this).height($(this).contents().find("#contentTable").height() + 120);
});
$("#divisionframe").load(function(){
$(this).height($(this).contents().find("#contentTable").height() + 120);
});
$("#propertyframe").load(function(){
$(this).height($(this).contents().find("#contentTable").height() + 120);
});
});
window.onload = function() {
//choicedOneZdjbxx();//加载已经选择的宗地信息
loadChoiceOneRegedinfo();
};
function gotoTaskTodoList(){
var isslsq = "${isslsq}";
var url = "${ctx}/act/task/historic?actywh=${actywh}&actsqr=${actsqr}&actdjlx=${actdjlx}&acttitle=${acttitle}";
if(isslsq == "1"){
url = "${ctx}/reg/bus/change/regBusCSlsq/list?DJXL=${regBusCSlsq.djxl}&actywh=${actywh}&actsqr=${actsqr}&actslry=${actslry}&acttaskdefkey=${acttaskdefkey}";//${ctx}/reg/bus/regBusSlsq/
}
window.location = url;
}
function loadChoiceOneRegedinfo(){
var regedInfoType = "${regBusCSlsq.djxl}";
var propertype = "${regBusCSlsq.propertype}";
if(regedInfoType == "305" || regedInfoType == "306" || regedInfoType == "307"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regDevolveLandCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data:"ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_devolveinfo").html(data);
}
});
}else if(regedInfoType == "502" || regedInfoType == "503" || regedInfoType == "504"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data:"ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_logoutinfo").html(data);
}
});
}else if(regedInfoType == "701" || regedInfoType == "702"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data : "ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_bzinfo").html(data);
}
});
}else if(regedInfoType == "901" || regedInfoType == "904"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data : "ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_bzinfo").html(data);
}
});
}else if (regedInfoType == "302"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regHousesCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data:"ywh=${regBusCSlsq.ywh}", //传参
async : false, //同步处理
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_bzinfo").html(data);
}
});
}else if(regedInfoType == "602"){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandRectifyCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data:"ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_rectifyinfo").html(data);
}
});
}else if(regedInfoType == "405" || regedInfoType == "406" || regedInfoType == "407"){
//同一权利人分割
//if(propertype == 1){
$.ajax({
type:"POST", //请求方式
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandCard", //请求路径
cache: false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
data:"ywh=${regBusCSlsq.ywh}", //传参
dataType: "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
success:function(data){
$("#reg_divisioninfo").html(data);
}
});
//}else{
//$.ajax({
//type : "POST", //请求方式
//url : "${ctx}/reg/bus/regBusBdcqzsdjxx/choiceOneRegedInfoSxbg", //请求路径
///cache : false, //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。
//data : "ywh=${regBusCSlsq.ywh}", //传参
//dataType : "html", //返回值类型 使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好
//success : function(data) {
//document.getElementById('reg_sxbginfo').innerHTML = data;
//}
//});
//}
}
}
function openPrintView(){
var id = $("#BdcqzsdjxxID").html();
if(id == 'undefined' || id == null){ id = ""; }
//弹出窗口的宽度;
var iWidth=500;
//弹出窗口的高度;
var iHeight=250;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printView?ywh=${regBusCSlsq.ywh}&BdcqzsdjxxID="+id;
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function printHousejfView(){
//弹出窗口的宽度;
var iWidth=500;
//弹出窗口的高度;
var iHeight=250;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusSf/isnotsfed",
cache: false,
data:"YWH=${regBusSlsq.ywh}",
async : false,
success:function(modelmap){
var isnotsfed = modelmap.data;
if(isnotsfed == "0"){
alert("没有收费维护,请先维护收费信息再打印!");
return;
}else{
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printHousejfView?ywh=${regBusCSlsq.ywh}";
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
}
});
}
function openPrintFssrskView(){
//弹出窗口的宽度;
var iWidth=1000;
//弹出窗口的高度;
var iHeight=800;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusSf/isnotsfed",
cache: false,
data:"YWH=${regBusSlsq.ywh}",
async : false,
success:function(modelmap){
var isnotsfed = modelmap.data;
if(isnotsfed == "0"){
alert("没有收费维护,请先维护收费信息再打印!");
return;
}else{
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printFssrskView?ywh=${regBusCSlsq.ywh}";
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
}
});
}
function openPrintSlsqView(){
var regedInfoType = "${regBusCSlsq.djxl}";
//弹出窗口的宽度;
var iWidth=950;
//弹出窗口的高度;
var iHeight=1000;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printViewSqspb?&ywh=${regBusCSlsq.ywh}&djlx="+regedInfoType;
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function openPrintZrzbgView(){
//弹出窗口的宽度;
var iWidth=1100;
//弹出窗口的高度;
var iHeight=600;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/openPrintZrzbgView?ywh=${regBusCSlsq.ywh}";
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function openHouseView(){
var regedInfoType = "${regBusCSlsq.djxl}";
//弹出窗口的宽度;
var iWidth=1100;
//弹出窗口的高度;
var iHeight=600;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/openHouseView?ywh=${regBusCSlsq.ywh}&DJLX="+regedInfoType;
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function openGroundView(){
var regedInfoType = "${regBusCSlsq.djxl}";
//弹出窗口的宽度;
var iWidth=1100;
//弹出窗口的高度;
var iHeight=600;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/openGroundView?ywh=${regBusCSlsq.ywh}&DJLX="+regedInfoType;
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function openCertificatePrint(szlx){
var iWidth=1100;
var iHeight=600;
var iTop = (window.screen.height - 30 - iHeight) / 2;
var iLeft = (window.screen.width - 10 - iWidth) / 2;
//点击打印之前,检查缮证入口是否维护
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusSz/isnotszed",
cache: false,
data:"YWH=${YWH}&szlx="+szlx,
async : false,
success:function(modelmap){
var isnotszed = modelmap.data;
var flag = modelmap.flag;
if(isnotszed == "0"){
alert("没有缮证维护,请先维护缮证信息再打印!");
return;
}else{
if(flag == '1'){
if(szlx == '0'){
alert("该业务已在一房多证入口操作,不能在正常繕证入口进行操作!");
}else{
alert("该业务已在正常繕证入口操作,不能在一房多证入口进行操作!");
}
return;
}else{
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printCertificate?ywh=${regBusCSlsq.ywh}&szlx=0";
window.open(url, "缮证打印窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
}
}
});
}
function printgdInfo(){
//弹出窗口的宽度;
var iWidth=1100;
//弹出窗口的高度;
var iHeight=600;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/bus/regBusGd/printGd?ywh=${regBusCSlsq.ywh}";
window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function openCertificatePrint1(szlx){
var iWidth=1100;
var iHeight=600;
var iTop = (window.screen.height - 30 - iHeight) / 2;
var iLeft = (window.screen.width - 10 - iWidth) / 2;
//点击打印之前,检查缮证入口是否维护
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusSz/isnotszed",
cache: false,
data:"YWH=${YWH}&szlx="+szlx,
async : false,
success:function(modelmap){
var isnotszed = modelmap.data;
var flag = modelmap.flag;
if(isnotszed == "0"){
alert("没有缮证维护,请先维护缮证信息再打印!");
return;
}else{
if(flag == '1'){
if(szlx == '0'){
alert("该业务已在一房多证入口操作,不能在正常繕证入口进行操作!");
}else{
alert("该业务已在正常繕证入口操作,不能在一房多证入口进行操作!");
}
return;
}else{
var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/printCertificate?ywh=${regBusCSlsq.ywh}&szlx=1";
window.open(url, "缮证打印窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
}
}
});
}
//繕证类型切换
function szlxqh(){
var szlx = document.getElementById("szlxtxt").value;
if(szlx == 0){
//document.getElementById("szlx1").style.display="none";//通过设置display属性可以使div隐藏后释放占用的页面空间
$("#szlx1").hide();
//document.getElementById("szlx0").style.display="";//通过设置display属性可以使div隐藏后释放占用的页面空间
$("#szlx0").show();
}else if(szlx == 1){
//document.getElementById("szlx0").style.display="none";//通过设置display属性可以使div隐藏后释放占用的页面空间
//document.getElementById("szlx1").style.display="";//通过设置display属性可以使div隐藏后释放占用的页面空间
$("#szlx0").hide();
$("#szlx1").show();
}
}
function pjsData(){
var pjsnr;
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusFdcq2/checkCqly",
cache: false,
data:"ywh=${regBusCSlsq.ywh}",
async : false,
success:function(modelmap){//0表示已获取到,1则获取
if(modelmap.success == 0){
pjsnr = modelmap.pjsnr;
}
}
});
pop.custom({
title: "判决书内容",
content: Base64.decode(pjsnr),
box: "body",
sizeAdapt: false,
anim: "gather",
width: 800,
height: 500,
id: undefined,
place: 5,
drag: true,
dragSize: true,
index: false,
toClose: true,
mask: true,
class: false
});
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li><a href="${ctx}/reg/bus/change/regBusCSlsq/list?DJXL=${regBusCSlsq.djxl}">受理申请列表</a></li>
<li class="active"><a href="${ctx}/reg/bus/change/regBusCSlsq/form?procInsId=${regBusCSlsq.procInsId}">受理申请详情</a></li>
</ul><br/>
<form:form class="form-horizontal" modelAttribute="regBusCSlsq">
<sys:message content="${message}"/>
<fieldset>
<legend>审批详情</legend>
<table class="table-form">
<tr>
<td class="tit">要素代码</td><td>${regBusCSlsq.ysdm}</td>
<td class="tit">业务号</td><td>${regBusCSlsq.ywh}</td>
<td class="tit">登记大类</td><td>${fns:getDictLabel(regBusCSlsq.djdl, 'reg_bus_djlx', '')}</td>
</tr>
<tr>
<td class="tit">登记小类</td>
<td>${fns:getDictLabel(regBusCSlsq.djxl, 'reg_bus_djxl', '')}</td>
<td class="tit">申请证书版式</td>
<td>${fns:getDictLabel(regBusCSlsq.sqzsbs, 'reg_bus_sqzsbs', '')}</td>
<td class="tit">申请分别持证</td>
<td>${fns:getDictLabel(regBusCSlsq.sqfbcz, 'yes_no', '')}</td>
</tr>
<tr>
<td class="tit">区县代码</td>
<td>${fns:getDictLabel(regBusCSlsq.qxdm, 'reg_bus_xq', '')}</td>
<td class="tit">受理人员</td>
<td>${regBusCSlsq.slry}</td>
<td class="tit">受理时间</td>
<td>
<fmt:formatDate value="${regBusCSlsq.slsj}" type="both" pattern="yyyy-MM-dd HH:mm:ss"/>
</td>
</tr>
<!--
<tr>
<td class="tit">坐落</td>
<td colspan="5">${regBusCSlsq.zl}</td>
</tr>
-->
<tr>
<td class="tit">申请人姓名</td>
<td>${regBusCSlsq.tzrxm}</td>
<td class="tit">通知方式</td>
<td>${fns:getDictLabel(regBusCSlsq.tzfs, 'reg_bus_tzfs', '')}</td>
<td class="tit">申请人电话</td>
<td>${regBusCSlsq.tzrdh}</td>
</tr>
<tr>
<td class="tit">申请人移动电话</td>
<td>${regBusCSlsq.tzryddh}</td>
<td class="tit">申请人电子邮件</td>
<td>${regBusCSlsq.tzrdzyj}</td>
<td class="tit">是否问题案件</td>
<td>${fns:getDictLabel(regBusCSlsq.sfwtaj, 'yes_no', '')}</td>
</tr>
<%--
<tr>
<!--
<td class="tit">结束时间</td>
<td><fmt:formatDate value="${regBusCSlsq.jssj}" type="both" pattern="yyyy-MM-dd HH:mm:ss"/></td>
<td class="tit">案件状态</td>
<td colspan="3">${fns:getDictLabel(regBusCSlsq.ajzt, 'reg_bus_ajzt', '')}</td>
<td class="tit">是否公示</td>
<td colspan="3">${fns:getDictLabel(regBusCSlsq.isgs, 'yes_no', '')}</td>
-->
<td>属性变更类型</td>
<td colspan="5">${fns:getDictLabel(regBusCSlsq.propertype, 'reg_bus_sxbglx', '')}</td>
</tr>
--%>
<tr>
<td class="tit">受托人姓名</td>
<td>${regBusCSlsq.str}</td>
<td class="tit">备注</td>
<td colspan="3">${regBusCSlsq.bz}</td>
</tr>
<tr>
<td class="tit">处理意见</td>
<td colspan="5">${regBusCSlsq.act.comment}</td>
</tr>
</table>
<br>
<!-- 查看初审复审环节添加附件 -->
<div class="control-group">
<c:if test="${QXCODE eq '610702'}">
<table>
<tr>
<td>
<label class="control-label">附件查看:</label>
</td>
<td>
<div>
<form:hidden id="fjinfo" path="fjinfo" htmlEscape="false" class="input-xlarge"/>
<sys:ckfinder input="fjinfo" type="files" uploadPath="/reg/bus/regBusSlsq" readonly="true"/>
</div>
</td>
<td>
<label class="control-label">照片:</label>
</td>
<td>
<iframe name="picname" src="${ctx}/reg/bus/uploadExamPic/scanss?ywh=${regBusCSlsq.ywh}&picid=${regBusCSlsq.act.taskDefKey}" width="220px" height="100px" frameborder="no" border="0"></iframe>
</td>
</tr>
</table>
</c:if>
<c:if test="${QXCODE ne '610702'}">
<label class="control-label">附件查看:</label>
<div class="controls">
<form:hidden id="fjinfo" path="fjinfo" htmlEscape="false" class="input-xlarge"/>
<sys:ckfinder input="fjinfo" type="files" uploadPath="/reg/bus/regBusSlsq" readonly="true"/>
</div>
</c:if>
</div>
</fieldset>
<fieldset>
<legend>业务受理-相关信息查看</legend>
<c:if test="${regBusCSlsq.djxl ne '429' and regBusCSlsq.djxl ne '440'}">
<!-- 公共信息 -->
<iframe id="qlrframe" name="qlrframe" src="${ctx}/reg/bus/regBusQlr/list?ywh=${regBusCSlsq.ywh}&YSDM=2003000000&LISTVIEWS=1&DJLX=${regBusCSlsq.djxl}" width="100%" height="250" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe> <br>
</c:if>
<iframe id="sjframe" name="sjframe" src="${ctx}/reg/bus/regBusSjmain/list?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1&DJLX=${regBusCSlsq.djxl}" width="100%" height="250" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<br><br>
<!-- 房屋建筑物所有权属性更正 -->
<c:if test="${regBusCSlsq.djxl eq '604'}">
<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1"
width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<!-- 属性变更 -->
<fieldset>
<legend>房屋建筑物所有权更正前登记信息列表</legend>
<iframe id="housePropertbeforeframe" name="housePropertbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/housePropertoldlist?YWH=${regBusCSlsq.ywh}&view=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>房屋建筑物所有权更正后登记信息列表</legend>
<iframe id="housePropertframe" name="housePropertframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 房屋建筑物所有权属性变更 -->
<c:if test="${regBusCSlsq.djxl eq '402'}">
<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1"
width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<!-- 属性变更 -->
<fieldset>
<legend>房屋建筑物所有权变更前登记信息列表</legend>
<iframe id="housePropertbeforeframe" name="housePropertbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/housePropertoldlist?YWH=${regBusCSlsq.ywh}&view=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>房屋建筑物所有权变更后登记信息列表</legend>
<iframe id="housePropertframe" name="housePropertframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 房屋建筑物所有权属性分割 -->
<c:if test="${regBusCSlsq.djxl eq '403'}">
<!-- 同一权利人分割 -->
<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1"
width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<fieldset>
<legend>房屋建筑物所有权分割前登记信息列表</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&LISTVIEWS=1&view=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>房屋建筑物所有权分割后登记信息列表</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&view=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 房屋建筑物所有权属性合并 -->
<c:if test="${regBusCSlsq.djxl eq '404'}">
<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1"
width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<!-- 同一权利人合并 -->
<fieldset>
<legend>房屋建筑物所有权合并前登记信息列表</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>房屋建筑物所有权合并后登记信息列表</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地所有权分割 -->
<c:if test="${regBusCSlsq.djxl eq '418'}">
<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>集体土地所有权分割前登记信息</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>集体土地所有权分割后登记信息</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地所有权合并 -->
<c:if test="${regBusCSlsq.djxl eq '419'}">
<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>集体土地所有权合并前登记信息</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}&djlx=${regBusCSlsq.djxl}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>集体土地所有权合并后登记信息</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&isLogout=0&djlx=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地所有权变更登记 -->
<c:if test="${regBusCSlsq.djxl eq '401'}">
<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>集体土地所有权变更前登记信息</legend>
<iframe id="propertyOldframe" name="propertyOldframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertyOldlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>集体土地所有权变更后登记信息</legend>
<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertylist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地所有权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '601'}">
<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>集体土地所有权更正前登记信息</legend>
<iframe id="propertyOldframe" name="propertyOldframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertyOldlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>集体土地所有权更正后登记信息</legend>
<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertylist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地使用权属性变更 -->
<c:if test="${regBusCSlsq.djxl eq '405'}">
<!-- 属性变更 -->
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1"
width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0"
scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>土地使用权变更前登记信息</legend>
<iframe id="propertyOldframe" name="propertyOldframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertyOldlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地使用权变更后登记信息</legend>
<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertylist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地使用权属性分割 -->
<c:if test="${regBusCSlsq.djxl eq '406'}">
<!-- 同一权利人分割 -->
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1"
width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0"
scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>土地使用权分割前登记信息</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&LISTVIEWS=1&view=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地使用权分割后登记信息</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&view=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地使用权属性合并 -->
<c:if test="${regBusCSlsq.djxl eq '407'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<!-- 同一权利人合并 -->
<fieldset>
<legend>土地使用权合并前登记信息</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地使用权合并后登记信息</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 森林、林木所有权分割 -->
<c:if test="${regBusCSlsq.djxl eq '414'}">
<iframe id="sllmsyqframe" name="sllmsyqframe" src="${ctx}/reg/bus/regBusLq/divisionMergerList?ywh=${regBusCSlsq.ywh}&YSDM=2002010300&LISTVIEWS=1" width="100%" height="200" frameborder="no"
border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>森林、林木所有权分割前登记信息列表</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>森林、林木所有权分割后登记信息列表</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 森林、林木所有权合并 -->
<c:if test="${regBusCSlsq.djxl eq '415'}">
<iframe id="sllmsyqframe" name="sllmsyqframe" src="${ctx}/reg/bus/regBusLq/divisionMergerList?ywh=${regBusCSlsq.ywh}&YSDM=2002010300&LISTVIEWS=1" width="100%" height="200" frameborder="no"
border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<!-- 同一权利人合并 -->
<fieldset>
<legend>森林、林木所有权合并前登记信息列表</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>森林、林木所有权合并后登记信息列表</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&isLogout=0" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 在建工程抵押权分割 -->
<c:if test="${regBusCSlsq.djxl eq '427'}">
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextdyaqygdivisionlist?ywh=${regBusCSlsq.ywh}&djlx=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1&view=1"
width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<div class="reg_sxbg">
<div id="reg_divisioninfo" class="reg_sxbginfo"></div><br>
</div>
<fieldset>
<legend>在建工程抵押权分割前登记信息</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&view=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>在建工程抵押权分割后登记信息</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 在建工程抵押权合并 -->
<c:if test="${regBusCSlsq.djxl eq '428'}">
<iframe id=dyaqframe name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextdyaqygdivisionlist?ywh=${regBusCSlsq.ywh}&djlx=${regBusCSlsq.djxl}&YSDM=6002010210&LISTVIEWS=1&view=1"
width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes"
allowtransparency="yes"></iframe>
<!-- 同一权利人合并 -->
<fieldset>
<legend>在建工程抵押权合并前登记信息列表</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>在建工程抵押权合并后登记信息列表</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&isLogout=0&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 抵押权更正登记 -->
<!-- 土地抵押权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '605'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=605&YSDM=2002040100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>土地抵押权更正登记登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=605&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 在建工程抵押权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '606'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=606&YSDM=2002030100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>在建工程抵押权更正登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=606&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 房屋建筑物抵押权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '608'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=608&YSDM=2002030100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>房屋建筑物抵押权更正登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=608&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 预告抵押权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '607'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&YSDM=2002030100&djlx=607&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>房屋预告抵押权更正登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=607&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 抵押权变更登记 -->
<!-- 土地抵押权变更登记 -->
<c:if test="${regBusCSlsq.djxl eq '430'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=430&YSDM=2002040100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>土地抵押权变更登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=430&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 在建工程抵押权变更登记 -->
<c:if test="${regBusCSlsq.djxl eq '431'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=431&YSDM=2002030100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>在建工程抵押权变更登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=431&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 房屋建筑物抵押权变更登记 -->
<c:if test="${regBusCSlsq.djxl eq '433'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&djlx=433&YSDM=2002030100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>房屋建筑物抵押权变更登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=433&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 预告抵押权变更登记 -->
<c:if test="${regBusCSlsq.djxl eq '432'}">
<fieldset>
<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusCSlsq.ywh}&YSDM=2002030100&djlx=432&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
<legend>房屋预告抵押权变更登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=432&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 土地使用权更名登记 -->
<c:if test="${regBusCSlsq.djxl eq '421'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1"
width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0"
scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<div>
<legend>土地使用权更名前登记信息</legend>
<iframe id="bgqpropertyframe" name="bgqpropertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusCSlsq.ywh}&DJLX=421" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</div>
<div>
<legend>土地使用权更名后登记信息</legend>
<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertygmlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1"
width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</div>
<br>
</fieldset>
</c:if>
<!-- 期转现楼盘 -->
<c:if test="${regBusCSlsq.djxl eq '429'}">
<fieldset>
<legend>楼盘变更前户信息列表</legend>
<iframe id="Beforepropertyframe" name="Beforepropertyframe" src="${ctx}/reg/base/regBaseH/getHBGBeforeList?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}&LISTVIEWS=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>楼盘变更后户信息列表</legend>
<iframe id="Afterpropertyframe" name="Afterpropertyframe" src="${ctx}/reg/base/regBaseH/getHBGList?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&DJLX=${regBusCSlsq.djxl}&LISTVIEWS=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 房屋楼盘变更 -->
<c:if test="${regBusCSlsq.djxl eq '440'}">
<legend>房屋楼盘变更前信息列表</legend>
<iframe id="Beforepropertyframe" name="Beforepropertyframe" src="${ctx}/reg/base/regBaseZrz/bglist?ywh=${regBusCSlsq.ywh}&oldlist=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>房屋楼盘变更后信息列表</legend>
<iframe id="Afterpropertyframe" name="Afterpropertyframe" src="${ctx}/reg/base/regBaseZrz/bglist?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 土地承包经营权分割 -->
<c:if test="${regBusCSlsq.djxl eq '410'}">
<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>土地承包经营权分割前登记信息</legend>
<iframe id="divisionbeforeframe" name="divisionbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionoldlist?YWH=${regBusCSlsq.ywh}&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地承包经营权分割后登记信息</legend>
<iframe id="divisionframe" name="divisionframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/divisionlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&view=1&djlx=${regBusCSlsq.djxl}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 土地承包经营权合并 -->
<c:if test="${regBusCSlsq.djxl eq '411'}">
<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>土地承包经营权合并前登记信息</legend>
<iframe id="mergerbeforeframe" name="mergerbeforeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusCSlsq.ywh}&djlx=${regBusCSlsq.djxl}" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地承包经营权合并后登记信息</legend>
<iframe id="mergerframe" name="mergerframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&isLogout=0&djlx=${regBusCSlsq.djxl}" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 国有建设用地使用权转移登记 -->
<c:if test="${regBusCSlsq.djxl eq '305'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/tdchangelist?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>国有建设用地使用权转移登记信息</legend>
<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&djlx=305" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 集体建设用地使用权转移登记 -->
<c:if test="${regBusCSlsq.djxl eq '306'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/jttdchangelist?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>集体建设用地使用权转移登记信息</legend>
<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&djlx=306" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 宅基地使用权转移登记 -->
<c:if test="${regBusCSlsq.djxl eq '307'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/zjdtdchangelist?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>宅基地使用权转移登记信息</legend>
<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&djlx=307" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 国有农用地使用权转移登记 -->
<c:if test="${regBusCSlsq.djxl eq '309'}">
<iframe id="nydsyqzydjframe" name="nydsyqzydjframe" src="${ctx}/reg/bus/regBusNydsyq/nydsyqzylist?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>国有农用用地使用权转移登记信息</legend>
<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&djlx=309" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</c:if>
<!-- 房屋建筑物所有权转移登记 -->
<c:if test="${regBusCSlsq.djxl eq '302'}">
<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusCSlsq.ywh}&YSDM=6002010210&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>房屋建筑物所有权转移登记信息</legend>
<div class="reg_card">
<div id="reg_bzinfo" class="reg_bzinfo"></div><br>
</div>
</fieldset>
</c:if>
<!-- 更正登记 -->
<!-- 土地使用权更正登记 -->
<c:if test="${regBusCSlsq.djxl eq '602'}">
<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/changelist?ywh=${regBusCSlsq.ywh}&DJLX=${regBusCSlsq.djxl}&YSDM=6002020100&LISTVIEWS=1"
width="100%" height="150" frameborder="no" border="0" marginwidth="0" marginheight="0"
scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>土地使用权更正前登记信息</legend>
<iframe id="propertyOldframe" name="propertyOldframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertyOldlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<legend>土地使用权更正后登记信息</legend>
<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/propertylist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 查封登记 -->
<c:if test="${regBusCSlsq.djxl eq '901'}">
<fieldset>
<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/list?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<div>
<legend>土地查封登记信息</legend>
<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&ybbj=1&djlx=901&Key=${regBusCSlsq.act.taskDefKey}" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</div>
</fieldset>
</c:if>
<!-- 轮候查封登记 -->
<c:if test="${regBusCSlsq.djxl eq '902'}">
</c:if>
<!-- 预查封登记 -->
<c:if test="${regBusCSlsq.djxl eq '903'}">
</c:if>
<!-- 查封登记注销 -->
<c:if test="${regBusCSlsq.djxl eq '904'}">
<fieldset>
<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/jflist?jfywh=${regBusCSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<div>
<legend>土地解封登记信息</legend>
<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusCSlsq.ywh}&ybbj=1&djlx=904" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</div>
</fieldset>
</c:if>
<!-- 异议登记 -->
<!-- 新建异议登记 -->
<c:if test="${regBusCSlsq.djxl eq '701'}">
<iframe id="yydjframe" name="yydjframe" src="${ctx}/reg/bus/regBusYydj/list?ywh=${regBusCSlsq.ywh}&YSDM=6002040200&isLogout=0&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>异议登记信息</legend>
<div class="reg_card">
<div id="reg_bzinfo" class="reg_bzinfo"></div><br>
</div>
</fieldset>
</c:if>
<!-- 注销异议登记 -->
<c:if test="${regBusCSlsq.djxl eq '702'}">
<iframe id="yydjframe" name="yydjframe" src="${ctx}/reg/bus/regBusYydj/list?ywh=${regBusCSlsq.ywh}&YSDM=6002040200&isLogout=1&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
<fieldset>
<legend>注销异议登记信息</legend>
<div class="reg_card">
<div id="reg_bzinfo" class="reg_bzinfo"></div><br>
</div>
</fieldset>
</c:if>
<!-- 其他登记业务 -->
<!-- 补证登记业务 -->
<c:if test="${regBusCSlsq.djxl eq '1001'}">
<fieldset>
<legend>补发土地不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1001" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 换证登记业务 -->
<c:if test="${regBusCSlsq.djxl eq '1002'}">
<fieldset>
<legend>换发土地不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1002" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<c:if test="${regBusCSlsq.djxl eq '1003'}">
<fieldset>
<legend>补发房屋不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1003" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 换证登记业务 -->
<c:if test="${regBusCSlsq.djxl eq '1004'}">
<fieldset>
<legend>换发房屋不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1004" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<c:if test="${regBusCSlsq.djxl eq '1007'}">
<fieldset>
<legend>补发土地不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1007" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 换证登记业务 -->
<c:if test="${regBusCSlsq.djxl eq '1008'}">
<fieldset>
<legend>换发土地不动产证登记信息</legend>
<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/hzbzlist?YWH=${regBusCSlsq.ywh}&YSDM=2001010000&WO=1&LISTVIEWS=1&ybbj=1&deleteDjlx=1008" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</fieldset>
</c:if>
<!-- 收费环节 -->
<c:if test="${regBusCSlsq.act.taskDefKey eq 'reg_audit56'}">
<c:if test="${regBusCSlsq.djxl ne '501' and regBusCSlsq.djxl ne '502' and regBusCSlsq.djxl ne '503' and regBusCSlsq.djxl ne '504'
and regBusCSlsq.djxl ne '505' and regBusCSlsq.djxl ne '507' and regBusCSlsq.djxl ne '509' and regBusCSlsq.djxl ne '510'
and regBusCSlsq.djxl ne '511' and regBusCSlsq.djxl ne '512' and regBusCSlsq.djxl ne '513' and regBusCSlsq.djxl ne '515'
and regBusCSlsq.djxl ne '702' and regBusCSlsq.djxl ne '704' and regBusCSlsq.djxl ne '901' and regBusCSlsq.djxl ne '902'
and regBusCSlsq.djxl ne '903' and regBusCSlsq.djxl ne '904' and regBusCSlsq.djxl ne '905' and regBusCSlsq.djxl ne '906'
and regBusCSlsq.djxl ne '907' and regBusCSlsq.djxl ne '908' and regBusCSlsq.djxl ne '440' and regBusCSlsq.djxl ne '601'
and regBusCSlsq.djxl ne '602' and regBusCSlsq.djxl ne '604'}">
<button type="button" class="btn btn-primary" onclick="printHousejfView();">
缴费单打印
</button>
</c:if>
</c:if>
<c:if test="${regBusCSlsq.djxl eq '440'}">
<button type="button" class="btn btn-primary" onclick="openPrintZrzbgView();">
楼盘变更单打印
</button>
</c:if>
<c:if test="${regBusCSlsq.djxl ne '440'}">
<a href="${ctx}/reg/bus/regBusSz/list?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">缮证信息查看</a>
<a href="${ctx}/reg/bus/regBusFz/list?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">发证信息查看</a>
<a href="${ctx}/reg/bus/regBusGd/list?ywh=${regBusCSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">归档信息查看</a>
<button type="button" class="btn btn-primary" onclick="openPrintView();">受理通知单打印</button>
<button type="button" class="btn btn-primary" onclick="openPrintSlsqView();">受理申请单打印</button>
</c:if>
<c:if test="${regBusCSlsq.djxl ne '501' and regBusCSlsq.djxl ne '502' and regBusCSlsq.djxl ne '503' and regBusCSlsq.djxl ne '504'
and regBusCSlsq.djxl ne '505' and regBusCSlsq.djxl ne '507' and regBusCSlsq.djxl ne '509' and regBusCSlsq.djxl ne '510'
and regBusCSlsq.djxl ne '511' and regBusCSlsq.djxl ne '512' and regBusCSlsq.djxl ne '513' and regBusCSlsq.djxl ne '515'
and regBusCSlsq.djxl ne '702' and regBusCSlsq.djxl ne '704' and regBusCSlsq.djxl ne '901' and regBusCSlsq.djxl ne '902'
and regBusCSlsq.djxl ne '903' and regBusCSlsq.djxl ne '904' and regBusCSlsq.djxl ne '905' and regBusCSlsq.djxl ne '906'
and regBusCSlsq.djxl ne '907' and regBusCSlsq.djxl ne '908' and regBusCSlsq.djxl ne '440' and regBusCSlsq.djxl ne '429'
and regBusCSlsq.djxl ne '601' and regBusCSlsq.djxl ne '602' and regBusCSlsq.djxl ne '604'}">
<button type="button" class="btn btn-primary" onclick="printHousejfView();">
缴费单打印
</button>
</c:if>
<c:if test="${regBusCSlsq.djxl ne '501' and regBusCSlsq.djxl ne '502' and regBusCSlsq.djxl ne '503' and regBusCSlsq.djxl ne '504'
and regBusCSlsq.djxl ne '505' and regBusCSlsq.djxl ne '507' and regBusCSlsq.djxl ne '509' and regBusCSlsq.djxl ne '510'
and regBusCSlsq.djxl ne '511' and regBusCSlsq.djxl ne '512' and regBusCSlsq.djxl ne '513' and regBusCSlsq.djxl ne '515'
and regBusCSlsq.djxl ne '702' and regBusCSlsq.djxl ne '704' and regBusCSlsq.djxl ne '901' and regBusCSlsq.djxl ne '902'
and regBusCSlsq.djxl ne '903' and regBusCSlsq.djxl ne '904' and regBusCSlsq.djxl ne '905' and regBusCSlsq.djxl ne '906'
and regBusCSlsq.djxl ne '907' and regBusCSlsq.djxl ne '908' and regBusCSlsq.djxl ne '440' and regBusCSlsq.djxl ne '429'
and regBusCSlsq.djxl ne '601' and regBusCSlsq.djxl ne '602' and regBusCSlsq.djxl ne '604'}">
<button type="button" class="btn btn-primary" onclick="openPrintFssrskView();">
非税收入收款票据打印
</button>
</c:if>
<c:if test="${regBusCSlsq.djxl ne '201' and regBusCSlsq.djxl ne '203' and regBusCSlsq.djxl ne '202' and regBusCSlsq.djxl ne '204'
and regBusCSlsq.djxl ne '209' and regBusCSlsq.djxl ne '421' and regBusCSlsq.djxl ne '405' and regBusCSlsq.djxl ne '406'
and regBusCSlsq.djxl ne '407' and regBusCSlsq.djxl ne '305' and regBusCSlsq.djxl ne '306' and regBusCSlsq.djxl ne '307'
and regBusCSlsq.djxl ne '602' and regBusCSlsq.djxl ne '901' and regBusCSlsq.djxl ne '701' and regBusCSlsq.djxl ne '502'
and regBusCSlsq.djxl ne '507' and regBusCSlsq.djxl ne '904' and regBusCSlsq.djxl ne '702' and regBusCSlsq.djxl ne '501'
and regBusCSlsq.djxl ne '315' and regBusCSlsq.djxl ne '605' and regBusCSlsq.djxl ne '430' and regBusCSlsq.djxl ne '601'
and regBusCSlsq.djxl ne '401' and regBusCSlsq.djxl ne '418' and regBusCSlsq.djxl ne '419' and regBusCSlsq.djxl ne '1001'
and regBusCSlsq.djxl ne '1002' and regBusCSlsq.djxl ne '440' and regBusCSlsq.djxl ne '205'
and regBusCSlsq.djxl ne '216' and regBusCSlsq.djxl ne '414' and regBusCSlsq.djxl ne '211' and regBusCSlsq.djxl ne '212'
and regBusCSlsq.djxl ne '412' and regBusCSlsq.djxl ne '304' and regBusCSlsq.djxl ne '312' and regBusCSlsq.djxl ne '516'
and regBusCSlsq.djxl ne '415' and regBusCSlsq.djxl ne '517' and regBusCSlsq.djxl ne '1007' and regBusCSlsq.djxl ne '1008'
and regBusCSlsq.djxl ne '410' and regBusCSlsq.djxl ne '411'}">
<button type="button" class="btn btn-info" onclick="openHouseView();">
楼盘
</button>
</c:if>
<c:if test="${regBusCSlsq.djxl eq '201' or regBusCSlsq.djxl eq '203' or regBusCSlsq.djxl eq '202' or regBusCSlsq.djxl eq '204'
or regBusCSlsq.djxl eq '209' or regBusCSlsq.djxl eq '421' or regBusCSlsq.djxl eq '405' or regBusCSlsq.djxl eq '406'
or regBusCSlsq.djxl eq '407' or regBusCSlsq.djxl eq '305' or regBusCSlsq.djxl eq '306' or regBusCSlsq.djxl eq '307'
or regBusCSlsq.djxl eq '602' or regBusCSlsq.djxl eq '901' or regBusCSlsq.djxl eq '701' or regBusCSlsq.djxl eq '502'
or regBusCSlsq.djxl eq '507' or regBusCSlsq.djxl eq '904' or regBusCSlsq.djxl eq '702' or regBusCSlsq.djxl eq '501'
or regBusCSlsq.djxl eq '315' or regBusCSlsq.djxl eq '605' or regBusCSlsq.djxl eq '430' or regBusCSlsq.djxl eq '601'
or regBusCSlsq.djxl eq '401' or regBusCSlsq.djxl eq '418' or regBusCSlsq.djxl eq '419' or regBusCSlsq.djxl eq '1001'
or regBusCSlsq.djxl eq '1002' or regBusCSlsq.djxl eq '1007' or regBusCSlsq.djxl eq '1008' or regBusCSlsq.djxl eq '410'
or regBusCSlsq.djxl eq '411'}">
<button type="button" class="btn btn-warning" onclick="openGroundView();">
宗地
</button>
</c:if>
<!-- 归档环节 -->
<c:if test="${regBusCSlsq.act.taskDefKey eq 'reg_end'}">
<button type="button" class="btn btn-danger" onclick="printgdInfo();">
归档信息打印
</button>
</c:if>
<br><br>
<!-- 缮证环节 -->
<c:if test="${regBusCSlsq.act.taskDefKey eq 'reg_audit5'}">
<label style="color:red">繕证类型:</label>
<form:select id="szlxtxt" path="djxl" class="input-medium" onclick="szlxqh()">
<form:option value="0" label="正常繕证"/>
<form:option value="1" label="一房多证"/>
</form:select>
<style type="text/css">
div#szlx0 {display:inline;}
div#szlx1 {display:inline;}
</style>
<div id="szlx0">
<button type="button" class="btn btn-primary" onclick="openCertificatePrint('0');">
正常繕证【打印】
</button>
</div>
<div id="szlx1">
<button type="button" class="btn btn-primary" onclick="openCertificatePrint1('1');">
一房多证【打印】
</button>
</div>
</c:if>
<c:if test="${pjnr eq '1'}">
<button type="button" class="btn btn-primary" onclick="pjsData('regBusCSlsq.ywh');">
裁决书
</button>
</c:if>
</fieldset>
<div class="form-actions">
<input id="btnCancel" class="btn" type="button" value="返 回" onclick="gotoTaskTodoList();"/>
</div>
<act:histoicFlow procInsId="${regBusCSlsq.procInsId}"/>
</form:form>
</body>
</html>