regBusHisHouseBdcqzsdjxxForm.jsp
30.6 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>预告登记房屋历史登记数据录入管理</title>
<br/>
<meta name="decorator" content="default"/>
<script src="${ctxStatic}/select3/Area.js" type="text/javascript"></script>
<script src="${ctxStatic}/select3/Dj_min.js" type="text/javascript"></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);
}
}
});
});
$(function (){
initComplexArea('seachprov', 'seachcity', 'seachdistrict', area_array, sub_array, '44', '0', '0');
});
function addRow(list, idx, tpl, row){
$(list).append(Mustache.render(tpl, {
idx: idx, delBtn: true, row: row
}));
$(list+idx).find("select").each(function(){
$(this).val($(this).attr("data-value"));
});
$(list+idx).find("input[type='checkbox'], input[type='radio']").each(function(){
var ss = $(this).attr("data-value").split(',');
for (var i=0; i<ss.length; i++){
if($(this).val() == ss[i]){
$(this).attr("checked","checked");
}
}
});
}
function delRow(obj, prefix){
var id = $(prefix+"_id");
var delFlag = $(prefix+"_delFlag");
if (id.val() == ""){
$(obj).parent().parent().remove();
}else if(delFlag.val() == "0"){
delFlag.val("1");
$(obj).html("÷").attr("title", "撤销删除");
$(obj).parent().parent().addClass("error");
}else if(delFlag.val() == "1"){
delFlag.val("0");
$(obj).html("×").attr("title", "删除");
$(obj).parent().parent().removeClass("error");
}
}
//房屋选择
function firstHouseGuide(){
//弹出窗口的宽度;
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/base/regBaseXm/guideList?YWH=${regBusSlsq.ywh}&DJLX=${regBusSlsq.djxl}";
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 setinfo(ysdm,bdcdyh,xmmc,zrzh,ch,hh,zl,fwjg,sjc,fttdmj,scjzmj,scftjzmj,sjcs,fwxz){
// $("#ysdm").val(ysdm);
$("#bdcdyh").val(bdcdyh);
$("#xmmc").val(xmmc);
$("#zrzh").val(zrzh);
$("#ch").val(ch);
$("#hh").val(hh);
$("#zl").val(zl);
$("#fwjg").val(fwjg);
$("#sjc").val(sjc);
$("#fttdmj").val(fttdmj);
$("#scjzmj").val(scjzmj);
$("#scftjzmj").val(scftjzmj);
$("#sjcs").val(sjcs);
$("#fwxz").val(fwxz);
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<c:if test="${empty VIEWS}">
<li><a href="${ctx}/reg/bus/regBusHisHouseBdcqzsdjxx/list">预告登记房屋历史登记数据录入列表</a></li>
</c:if>
<li class="active"><a href="${ctx}/reg/bus/regBusHisHouseBdcqzsdjxx/form?id=${regBusHisHouseBdcqzsdjxx.id}&H=1">预告登记房屋历史登记数据录入<shiro:hasPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit">${not empty regBusHisHouseBdcqzsdjxx.id?'修改':'添加'}</shiro:hasPermission><shiro:lacksPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit">查看</shiro:lacksPermission></a></li>
</ul><br/>
<form:form id="inputForm" modelAttribute="regBusHisHouseBdcqzsdjxx" action="${ctx}/reg/bus/regBusHisHouseBdcqzsdjxx/save?H=1" method="post" class="form-horizontal">
<form:hidden path="id"/>
<sys:message content="${message}"/>
<fieldset>
<legend>房屋基本信息</legend>
</br>
<table class="table-form">
<tr>
<td class="tit">要素代码:</td>
<td>
<form:input path="ysdm" id="ysdm" htmlEscape="false" readonly="true" value="2001010000" maxlength="100" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">不动产单元号:</td>
<td>
<form:input path="bdcdyh" id="bdcdyh" htmlEscape="false" readonly="true" maxlength="50" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit"> </td>
<td>
<input id="btnChoice" class="btn btn-primary" type="button" value="楼 盘 信 息 选 择" onclick="javascript:firstHouseGuide();"/>
</td>
</tr>
<tr>
<td class="tit">项目名称:</td>
<td>
<form:input path="xmmc" id="xmmc" htmlEscape="false" readonly="true" maxlength="100" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">自然幢号:</td>
<td>
<form:input path="zrzh" id="zrzh" htmlEscape="false" readonly="true" maxlength="12" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">层号:</td>
<td>
<form:input path="ch" id="ch" htmlEscape="false" readonly="true" maxlength="100" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">户号:</td>
<td>
<form:input path="hh" id="hh" htmlEscape="false" readonly="true" maxlength="12" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">坐落:</td>
<td colspan="3">
<form:textarea path="zl" id="zl" htmlEscape="false" readonly="true" maxlength="50" class="input-xlarge required" rows="2"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
</table>
</fieldset>
</br>
<fieldset>
<legend>权属信息</legend>
</br>
<ul class="nav nav-tabs">
<li class="active" id="yg">预告登记信息</li>
<!-- <li id="fc"><a href="#fdcqdjxx" data-toggle="tab">房地产权登记信息</a></li> -->
<!-- <li id="dy"><a href="#dyqdjxx" data-toggle="tab">抵押权登记信息</a></li> -->
</ul>
<br/>
<div id="myTabContent" class="tab-content">
<table class="table-form">
<!-- <div> -->
<!-- <tr> -->
<!-- <td class="tit">权利 类型: -->
<!-- </td> -->
<!-- <td> -->
<!-- <select id="seachprov" class="input-medium" name="seachprov" onChange="changeComplexProvince(this.value, sub_array, 'seachcity', 'seachdistrict');"></select> -->
<!-- </td> -->
<!-- -->
<!-- <td class="tit">登记小类: -->
<!-- </td> -->
<!-- <td> -->
<!-- <select id="seachcity" class="input-medium" name="homecity" onChange="changeCity(this.value,'seachdistrict');"></select> -->
<!-- </td> -->
<!-- -->
<!-- <td>登记小类: -->
<!-- </td> -->
<!-- <td> -->
<!-- <span id="seachdistrict_div"><select id="seachdistrict" class="input-medium" name="seachdistrict"></select></span> -->
<!-- </td> -->
<!-- </tr> -->
<!-- </div> -->
<tr>
<td class="tit">登记小类:</td>
<td>
<form:select path="djxl" id="djxl" class="input-large required">
<form:option value="" label=""/>
<%-- <form:options items="${fns:getDictList('reg_bus_djxl')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<form:option value="803" label="预购商品房预告登记"/>
<form:option value="806" label="房屋建筑物转移预告登记"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">权利类型:</td>
<td>
<form:select path="qllx" id="qllx" class="input-large required">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_qllx')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<!-- <td class="tit">登记类型:</td> -->
<!-- <td> -->
<%-- <form:select path="djlx" id="djlx" class="input-large" > --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_djlx')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<td class="tit">权利性质:</td>
<td>
<form:select path="qlxz" id="qlxz" class="input-large required" >
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_qlxz')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<!-- <td class="tit">土地使用权人:</td> -->
<!-- <td> -->
<%-- <form:input path="tdsyqr" htmlEscape="false" maxlength="50" class="input-large required"/> --%>
<!-- <span class="help-inline"><font color="red">*</font> </span> -->
<!-- </td> -->
<td class="tit">登记机构:</td>
<td>
<form:input path="djjg" htmlEscape="false" readonly="true" maxlength="200" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">登簿人:</td>
<td>
<form:input path="dbr" htmlEscape="false" maxlength="200" readonly="true" class="input-large"/>
<!-- <span class="help-inline"><font color="red">*</font> </span> -->
</td>
<td class="tit">合同编号:</td>
<td>
<form:input path="htbh" htmlEscape="false" maxlength="50" class="input-large "/>
</td>
</tr>
<tr>
<td class="tit">登记时间:</td>
<td>
<input name="djsj" type="text" readonly="true" maxlength="20" class="input-medium Wdate required"
value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.djsj}" pattern="yyyy-MM-dd HH:mm:ss"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">权属状态:</td>
<td>
<form:select path="qszt" class="input-large ">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_qszt')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
<td class="tit">预告登记种类:</td>
<td>
<form:select path="ygdjzl" class="input-large ">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_ygdjzl')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
<!-- <td class="tit">建筑面积:</td> -->
<!-- <td> -->
<%-- <form:input path="jzmj" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
</tr>
<!-- <tr> -->
<!-- <td class="tit">房屋性质</td> -->
<!-- <td> -->
<%-- <form:select path="fwxz" class="input-large "> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_fwxz')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- <td class="tit">房屋结构</td> -->
<!-- <td> -->
<%-- <form:select path="fwjg" class="input-large "> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_fwjg')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- <td class="tit">规划用途</td> -->
<!-- <td> -->
<%-- <form:select path="ghyt" class="input-large"> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_fwyt')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- </tr> -->
<tr>
<!-- <td class="tit">所在层:</td> -->
<!-- <td> -->
<%-- <form:input path="szc" htmlEscape="false" maxlength="4" class="input-large number"/> --%>
<!-- </td> -->
<!-- <td class="tit">总层数:</td> -->
<!-- <td> -->
<%-- <form:input path="zcs" htmlEscape="false" maxlength="4" class="input-large number"/> --%>
<!-- </td> -->
<td class="tit">区县代码:</td>
<td>
<form:select path="qxdm" class="input-large required">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_xq')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">取得价格:</td>
<td>
<form:input path="qdjg" htmlEscape="false" class="input-large number"/>
</td>
</tr>
<tr>
<td class="tit">附记</td>
<td colspan="1">
<form:textarea path="fj" id="fj" htmlEscape="false" rows="3" maxlength="300" class="input-large"/>
</td>
<td class="tit">登记原因</td>
<td colspan="3">
<form:textarea path="djyy" htmlEscape="false" rows="3" maxlength="500" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
</table>
</div>
<br/>
<br/>
<!-- <div id="myTabContent" class="tab-content"> -->
<!-- <div class="tab-pane fade in active" id="ygdjxx"> -->
<!-- <table class="table-form"> -->
<!-- <tr> -->
<!-- <td class="tit">合同编号:</td> -->
<!-- <td> -->
<%-- <form:input path="htbh" htmlEscape="false" maxlength="50" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">预告登记种类:</td> -->
<!-- <td> -->
<%-- <form:select path="ygdjzl" class="input-large "> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_ygdjzl')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- <td class="tit">取得价格:</td> -->
<!-- <td> -->
<%-- <form:input path="qdjg" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- </table> -->
<!-- </div> -->
<!-- <div class="tab-pane fade" id="fdcqdjxx"> -->
<!-- <table class="table-form"> -->
<!-- <tr> -->
<!-- <td class="tit">竣工时间:</td> -->
<!-- <td> -->
<!-- <input name="jgsj" type="text" maxlength="20" class="input-medium Wdate " -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.jgsj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- <td class="tit">独用土地面积:</td> -->
<!-- <td> -->
<%-- <form:input path="dytdmj" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- <td class="tit">分摊土地面积:</td> -->
<!-- <td> -->
<%-- <form:input path="fttdmj" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">土地使用起始时间:</td> -->
<!-- <td> -->
<!-- <input name="tdsyqssj" type="text" maxlength="20" class="input-medium Wdate " -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.tdsyqssj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- </td> -->
<!-- <td class="tit">土地使用结束时间:</td> -->
<!-- <td> -->
<!-- <input name="tdsyjssj" type="text" maxlength="20" class="input-medium Wdate " -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.tdsyjssj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- </td> -->
<!-- <td class="tit">房地产交易价格:</td> -->
<!-- <td> -->
<%-- <form:input path="fdcjyjg" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">专有建筑面积:</td> -->
<!-- <td> -->
<%-- <form:input path="zyjzmj" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- <td class="tit">分摊建筑面积:</td> -->
<!-- <td> -->
<%-- <form:input path="ftjzmj" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- </table> -->
<!-- </div> -->
<!-- <div class="tab-pane fade" id="dyqdjxx"> -->
<!-- <table class="table-form"> -->
<!-- <tr> -->
<!-- <td class="tit">抵押人:</td> -->
<!-- <td> -->
<%-- <form:input path="dyr" htmlEscape="false" maxlength="50" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">抵押权人:</td> -->
<!-- <td> -->
<%-- <form:input path="dyqr" htmlEscape="false" maxlength="200" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">抵押共有人:</td> -->
<!-- <td> -->
<%-- <form:input path="dygyr" htmlEscape="false" maxlength="200" class="input-large "/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">抵押不动产类型:</td> -->
<!-- <td> -->
<%-- <form:select path="dybdclx" class="input-large "> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_dybdclx')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- <td class="tit">抵押方式:</td> -->
<!-- <td> -->
<%-- <form:select path="dyfs" class="input-large "> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_dyfs')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<!-- </td> -->
<!-- <td class="tit">债务人:</td> -->
<!-- <td> -->
<%-- <form:input path="zwr" htmlEscape="false" maxlength="50" class="input-large"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">在建建筑物抵押范围:</td> -->
<!-- <td> -->
<%-- <form:input path="zjjzwdyfw" htmlEscape="false" maxlength="100" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">被担保主债权数额:</td> -->
<!-- <td> -->
<%-- <form:input path="bdbzzqse" htmlEscape="false" class="input-medium number"/> --%>
<!-- </td> -->
<!-- <td class="tit">债务履行起始时间:</td> -->
<!-- <td> -->
<!-- <input name="zwlxqssj" type="text" maxlength="20" class="input-medium Wdate" -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.zwlxqssj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">债务履行结束时间:</td> -->
<!-- <td> -->
<!-- <input name="zwlxjssj" type="text" maxlength="20" class="input-medium Wdate" -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.zwlxjssj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- </td> -->
<!-- <td class="tit">最高债权确定事实:</td> -->
<!-- <td> -->
<%-- <form:input path="zgzqqdss" htmlEscape="false" maxlength="100" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">最高债权数额:</td> -->
<!-- <td> -->
<%-- <form:input path="zgzqse" htmlEscape="false" class="input-large number"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit">注销抵押业务号:</td> -->
<!-- <td> -->
<%-- <form:input path="zxdyywh" htmlEscape="false" maxlength="20" class="input-xlarge "/> --%>
<!-- </td> -->
<!-- <td class="tit">注销抵押原因:</td> -->
<!-- <td> -->
<%-- <form:input path="zxdyyy" htmlEscape="false" maxlength="100" class="input-large "/> --%>
<!-- </td> -->
<!-- <td class="tit">注销时间:</td> -->
<!-- <td> -->
<!-- <input name="zxsj" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate " -->
<%-- value="<fmt:formatDate value="${regBusHisHouseBdcqzsdjxx.zxsj}" pattern="yyyy-MM-dd HH:mm:ss"/>" --%>
<!-- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss' });"/> -->
<!-- </td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td class="tit" >评估价值</td> -->
<%-- <td ><form:input id="pgjz" path="pgjz" --%>
<%-- htmlEscape="false" class="input-medium number" /> --%>
<!-- <span class="help-inline"><font size="2">万元</font></span> -->
<!-- </td> -->
<!-- <td class="tit">在建建筑物坐落:</td> -->
<!-- <td> -->
<%-- <form:input path="zjjzwzl" htmlEscape="false" maxlength="200" rows="3" class="input-large"/> --%>
<!-- </td> -->
<!-- </tr> -->
<!-- </table> -->
<!-- </div> -->
</div>
</fieldset>
<!-- <div class="control-group"> -->
<!-- <label class="control-label">是否审核 0未审核 1已审核:</label> -->
<!-- <div class="controls"> -->
<%-- <form:input path="isaudit" htmlEscape="false" maxlength="1" class="input-xlarge "/> --%>
<!-- </div> -->
<!-- </div> -->
<!-- <div class="control-group"> -->
<!-- <label class="control-label">备注信息:</label> -->
<!-- <div class="controls"> -->
<%-- <form:textarea path="remarks" htmlEscape="false" rows="4" maxlength="255" class="input-xxlarge "/> --%>
<!-- </div> -->
<!-- </div> -->
</br>
<fieldset>
<legend>权利人信息</legend>
</br>
<table id="contentTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th class="hide"></th>
<th>权利人名称</th>
<th>证件种类</th>
<th>证件号</th>
<th>义务人名称</th>
<th>证件种类</th>
<th>证件号</th>
<th>权利人类型</th>
<th>共有方式</th>
<shiro:hasPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit"><th width="10"> </th></shiro:hasPermission>
</tr>
</thead>
<tbody id="regBusHisHouseQlrList">
</tbody>
<shiro:hasPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit"><tfoot>
<tr><td colspan="10"><a href="javascript:" onclick="addRow('#regBusHisHouseQlrList', regBusHisHouseQlrRowIdx, regBusHisHouseQlrTpl);regBusHisHouseQlrRowIdx = regBusHisHouseQlrRowIdx + 1;" class="btn">新增</a></td></tr>
</tfoot></shiro:hasPermission>
</table>
<script type="text/template" id="regBusHisHouseQlrTpl">
<tr id="regBusHisHouseQlrList{{idx}}">
<td class="hide">
<input id="regBusHisHouseQlrList{{idx}}_id" name="regBusHisHouseQlrList[{{idx}}].id" type="hidden" value="{{row.id}}"/>
<input id="regBusHisHouseQlrList{{idx}}_delFlag" name="regBusHisHouseQlrList[{{idx}}].delFlag" type="hidden" value="0"/>
</td>
<td>
<input id="regBusHisHouseQlrList{{idx}}_qlrmc" name="regBusHisHouseQlrList[{{idx}}].qlrmc" type="text" value="{{row.qlrmc}}" maxlength="100" class="input-small required"/>
</td>
<td>
<select id="regBusHisHouseQlrList{{idx}}_zjzl" name="regBusHisHouseQlrList[{{idx}}].zjzl" data-value="{{row.zjzl}}" class="input-small required">
<option value=""></option>
<c:forEach items="${fns:getDictList('reg_bus_zjlx')}" var="dict">
<option value="${dict.value}">${dict.label}</option>
</c:forEach>
</select>
</td>
<td>
<input id="regBusHisHouseQlrList{{idx}}_zjh" name="regBusHisHouseQlrList[{{idx}}].zjh" type="text" value="{{row.zjh}}" maxlength="50" class="input-small required"/>
</td>
<td>
<input id="regBusHisHouseQlrList{{idx}}_ywrmc" name="regBusHisHouseQlrList[{{idx}}].ywrmc" type="text" value="{{row.ywrmc}}" maxlength="100" class="input-small"/>
</td>
<td>
<select id="regBusHisHouseQlrList{{idx}}_ywrzjzl" name="regBusHisHouseQlrList[{{idx}}].ywrzjzl" data-value="{{row.ywrzjzl}}" class="input-small">
<option value=""></option>
<c:forEach items="${fns:getDictList('reg_bus_zjlx')}" var="dict">
<option value="${dict.value}">${dict.label}</option>
</c:forEach>
</select>
</td>
<td>
<input id="regBusHisHouseQlrList{{idx}}_ywrzjh" name="regBusHisHouseQlrList[{{idx}}].ywrzjh" type="text" value="{{row.ywrzjh}}" maxlength="50" class="input-small"/>
</td>
<td>
<select id="regBusHisHouseQlrList{{idx}}_qlrlx" name="regBusHisHouseQlrList[{{idx}}].qlrlx" data-value="{{row.qlrlx}}" class="input-small required">
<option value=""></option>
<c:forEach items="${fns:getDictList('reg_bus_qlrlx')}" var="dict">
<option value="${dict.value}">${dict.label}</option>
</c:forEach>
</select>
</td>
<td>
<select id="regBusHisHouseQlrList{{idx}}_gyfs" name="regBusHisHouseQlrList[{{idx}}].gyfs" data-value="{{row.gyfs}}" class="input-small required">
<option value=""></option>
<c:forEach items="${fns:getDictList('reg_bus_gyfs')}" var="dict">
<option value="${dict.value}">${dict.label}</option>
</c:forEach>
</select>
</td>
<shiro:hasPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit"><td class="text-center" width="10">
{{#delBtn}}<span class="close" onclick="delRow(this, '#regBusHisHouseQlrList{{idx}}')" title="删除">×</span>{{/delBtn}}
</td></shiro:hasPermission>
</tr>
</script>
<script type="text/javascript">
var regBusHisHouseQlrRowIdx = 0, regBusHisHouseQlrTpl = $("#regBusHisHouseQlrTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g,"");
$(document).ready(function() {
var data = ${fns:toJson(regBusHisHouseBdcqzsdjxx.regBusHisHouseQlrList)};
for (var i=0; i<data.length; i++){
addRow('#regBusHisHouseQlrList', regBusHisHouseQlrRowIdx, regBusHisHouseQlrTpl, data[i]);
regBusHisHouseQlrRowIdx = regBusHisHouseQlrRowIdx + 1;
}
});
</script>
</fieldset>
</br>
<fieldset>
<legend>已登记业务</legend>
</br>
<table class="table-form">
<tr>
<td class="tit">业务号:</td>
<td>
<form:input path="ywh" htmlEscape="false" readonly="true" value="${YWHIS}" maxlength="100" class="input-large"/>
</td>
<td class="tit">划拨价款:</td>
<td>
<form:input path="hbjk" htmlEscape="false" maxlength="100" class="input-large"/>
</td>
<td class="tit">出让合同号(划拨决定书):</td>
<td>
<form:input path="hbhth" htmlEscape="false" maxlength="100" class="input-large"/>
</td>
</tr>
<tr>
<td class="tit">不动产权证号:</td>
<td>
<form:input path="bdcqzh" id="bdcqzh" htmlEscape="false" maxlength="50" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">不动产权证编号:</td>
<td>
<form:input path="bdcqzbh" id="bdcqzbh" htmlEscape="false" maxlength="12" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">不动产登记证明号:</td>
<td colspan="3">
<form:input path="bdcdjzmh" id="bdcdjzmh" htmlEscape="false" maxlength="5000" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">批文号:</td>
<td>
<form:input path="pwh" htmlEscape="false" maxlength="50" class="input-large"/>
</td>
<td class="tit">发证时间:</td>
<td><input name="fzsj" type="text" maxlength="20" class="input-medium Wdate"
value="${regBusHisHouseBdcqzsdjxx.fzsj}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
</td>
<td class="tit">终止时间:</td>
<td>
<input name="zzsj" type="text" maxlength="20" class="input-medium Wdate"
value="${regBusHisHouseBdcqzsdjxx.zzsj}"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
</td>
</tr>
<tr>
<td class="tit">使用期限:</td>
<td>
<form:input path="syqx" htmlEscape="false" maxlength="12" class="input-large"/>
</td>
<!-- <td class="tit">图幅号:</td> -->
<!-- <td> -->
<%-- <form:input path="tfh" htmlEscape="false" maxlength="12" class="input-large"/> --%>
<!-- </td> -->
</tr>
</table>
</fieldset>
<div class="form-actions" align="center">
<shiro:hasPermission name="reg:bus:regBusHisHouseBdcqzsdjxx:edit"><input id="btnSubmit" class="btn btn-primary" type="submit" value="保 存"/> </shiro:hasPermission>
<input id="btnCancel" class="btn" type="button" value="返 回" onclick="javascript:window.close();"/>
</div>
</form:form>
</body>
</html>