78e38e8468f96f07f2dc923a948dd143efec2178.svn-base
25.7 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
<%@ 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">
$(document).ready(function() {
$("#name").focus();
$("#inputForm").validate({
submitHandler: function(form){
document.getElementById("btnSubmit").disabled="disabled";
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 qlrwinOpen(){
var chcode = $("#chcodetext").val();
if(chcode == "" || chcode == null){
alert("请先添加保存测绘信息");
return;
}
//弹出窗口的宽度;
var iWidth=1100;
//弹出窗口的高度;
var iHeight=600;
//获得窗口的垂直位置
var iTop = (window.screen.height - 30 - iHeight) / 2;
//获得窗口的水平位置
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var op= "${optype}";
var gyfs = "";
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusHisHouseQlr/isFlagGyqk",
cache: false,
data:"YWH="+$("#ywhtext").val(),
async : false,
success:function(modelmap){
successbj = modelmap.success;
gyfs = modelmap.gyfs;
if(modelmap.success != 1){
alert(modelmap.msg);
return;
}
}
});
if(successbj == 1){
if(op == 1){
window.open("${ctx}/reg/bus/regBusHisHouseQlr/form?optype=${optype}&YWH="+$("#ywhtext").val()+"&gyfs="+gyfs,"11",
"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
}else{
window.open("${ctx}/reg/bus/regBusHisHouseQlr/form?optype=${optype}&YWH="+$("#ywhtext").val()+"&gyfs="+gyfs,"22",
"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
}
}
}
function checkQlr(){
//查询权利人共有方式
var successbj ="";
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusHisHouseQlr/querygyfs", //请求路径
cache: false,
data:"YWH="+$("#ywhtext").val(),
async : false,
success:function(modelmap){
successbj = modelmap.success;
if(modelmap.success == 1){
alert(modelmap.msg);
return;
}
}
});
var ifmWindow = document.getElementById('qlrframe').contentWindow;
var tbLen = $(ifmWindow.document).find("#contentTable").find("tbody").find("tr").length;
if(tbLen == 0){
alert("请添加权利人信息!");
return false;
} else {
return true;
}
}
function getUrl(){
document.inputForms.action = "${ctx}/reg/bus/regBusHisLqBdcqzsdjxx/save?lsbj=1&WO=2&optype=${optype}";
document.inputForms.submit();
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<%-- <li><a href="${ctx}/reg/bus/regBusHisLqBdcqzsdjxx/">林权历史数据列表</a></li>
<li class="active"><a href="${ctx}/reg/bus/regBusHisLqBdcqzsdjxx/form?id=${regBusHisLqBdcqzsdjxx.id}">林权历史数据<shiro:hasPermission name="reg:bus:regBusHisLqBdcqzsdjxx:edit">${not empty regBusHisLqBdcqzsdjxx.id?'修改':'添加'}</shiro:hasPermission><shiro:lacksPermission name="reg:bus:regBusHisLqBdcqzsdjxx:edit">查看</shiro:lacksPermission></a></li>--%>
<li class="active"><a href="#">林权历史数据<shiro:hasPermission name="reg:bus:regBusHisLqBdcqzsdjxx:edit">${not empty regBusHisLqBdcqzsdjxx.id?'修改':'添加'}</shiro:hasPermission><shiro:lacksPermission name="reg:bus:regBusHisLqBdcqzsdjxx:edit">查看</shiro:lacksPermission></a></li>
</ul><br/>
<form:form id="inputForm" name="inputForms" modelAttribute="regBusHisLqBdcqzsdjxx" action="${ctx}/reg/bus/regBusHisLqBdcqzsdjxx/save?lsbj=1&WO=2&optype=${optype}" method="post" class="form-horizontal" >
<form:hidden path="id"/>
<form:hidden path="chxxid" id="chxxid"/>
<sys:message content="${message}"/>
<fieldset>
<legend>测绘信息</legend>
<table class="table-form">
<tr>
<td class="tit">测绘编码:</td>
<td><form:input path="chcode" id = "chcodetext" readOnly="true" htmlEscape="false" maxlength="100" class="input-large "/>
</td>
<td class="tit">宗地面积:</td>
<td>
<fmt:formatNumber value="${regBusHisLqBdcqzsdjxx.zdmj}" pattern="#0.##" var="formattedNumber"/>
<form:input path="zdmj" id="zdmjtext" onblur="info()" readOnly="true" htmlEscape="false" value="${formattedNumber}" maxlength="15" class="input-large number required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">面积单位</td>
<td>
<form:select id="mjdw" path="mjdw" class="input-medium required">
<form:option value="1" label="${fns:getDictLabel('1', 'reg_bus_mjdw', '')}"/>
<form:options items="${fns:getDictList('reg_bus_mjdw')}" 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:select path="seachprov" id="seachprovtext" class="input-medium required" > --%>
<%-- <form:options items="${fns:getDictList('reg_bus_xq')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<form:input path="seachprov" id="seachprovtext" readOnly="true" htmlEscape="false" maxlength="100" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">地籍区:</td>
<td>
<%-- <form:select path="seachcity" id="seachcitytext" class="input-medium required" onChange="changeCity(this.value,'seachdistricttext');getAreaInfo();"> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_djq')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<form:input path="seachcity" id="seachcitytext" readOnly="true" htmlEscape="false" maxlength="100" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">地籍子区:</td>
<td>
<%-- <form:select path="seachdistrict" id="seachdistricttext" class="input-medium required" onChange="getAreaInfo();"> --%>
<%-- <form:option value="" label=""/> --%>
<%-- <form:options items="${fns:getDictList('reg_bus_djzq')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- </form:select> --%>
<form:input path="seachdistrict" id="seachdistricttext" readOnly="true" htmlEscape="false" maxlength="100" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">图幅号:</td>
<td>
<form:input id="tfhtext" path="tfh" htmlEscape="false" maxlength="50" readOnly="true" class="input-large"/>
</td>
<td class="tit">宗地四至-东:</td>
<td>
<form:input id="zdszdtext" path="zdszd" htmlEscape="false" maxlength="200" readOnly="true" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">宗地四至-南:</td>
<td>
<form:input id="zdszntext" path="zdszn" htmlEscape="false" maxlength="200" readOnly="true" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td rowspan="2" class="tit">坐落:</td>
<td rowspan="2">
<form:textarea path="zl" id="zltext" htmlEscape="false" onChange="zlinfo();" readOnly="true" rows="2" maxlength="200" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">宗地四至-西:</td>
<td>
<form:input id="zdszxtext" path="zdszx" htmlEscape="false" maxlength="200" readOnly="true" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">宗地四至-北:</td>
<td>
<form:input id="zdszbtext" path="zdszb" htmlEscape="false" maxlength="200" readOnly="true" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">测绘人员:</td>
<td>
<form:input path="chrymc" id="chrymctext" readOnly="true" htmlEscape="false" maxlength="100" class="input-large"/>
</td>
<td class="tit">测绘添加时间:</td>
<td>
<!-- <input id="textchsj" path="chsj" type="text" maxlength="20" class="input-medium Wdate" -->
<%-- value="${fns:getDate value="${regBusHisLqBdcqzsdjxx.chsj}" pattern="yyyy-MM-dd"/>" /> --%>
<input id="textchsj" name="chsj" type="text" path="chsj" maxlength="20" class="input-medium Wdate"
value="<fmt:formatDate value="${regBusHisLqBdcqzsdjxx.chsj}" pattern="yyyy-MM-dd"/>" />
</td>
</tr>
<tr>
<td >宗地图:</td>
<td>
<form:hidden id="zdt" path="zdt" htmlEscape="false" maxlength="4000" class="input-xlarge"/>
<sys:ckfinder input="zdt" type="files" uploadPath="/reg/base/regBaseChxx" selectMultiple="true"/>
</td>
<td class="tit">界址点坐标:</td>
<td colspan="3">
<form:textarea path="jzdzb" id="jzdzbtext" htmlEscape="false" rows="4" readOnly="true" maxlength="1000" class="input-xxlarge"/>
</td>
</tr>
</table>
</fieldset>
<fieldset>
<legend>林地及森林、林木基本信息</legend>
<table class="table-form">
<tr>
<td class="tit">要素代码</td>
<td>
<form:input id="ysdm" path="ysdm" readOnly="true" htmlEscape="false" value="2001010000" maxlength="10" class="input-large"/>
</td>
<td class="tit">宗地代码</td>
<td>
<form:input id="zddm" path="zddm" htmlEscape="false" readonly="true" maxlength="19" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">土地所有权代码</td>
<td>
<form:select path="tdsyqdm" id="tdsyqdm" onChange="tdsyq()" class="input-medium required">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_tdsyqdm')}" 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:select path="zdtzm" id="zdtzmTxt" onChange="tdsyq()" class="input-large required">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_zdtzm')}" 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 id="djh" path="djh" htmlEscape="false" maxlength="20" class="input-large "/>
</td>
<td class="tit">权利设定方式</td>
<td>
<form:select id="qlsdfs" path="qlsdfs" class="input-medium ">
<form:option value="2" label="${fns:getDictLabel('2', 'reg_bus_qlsdfs', '')}"/>
<form:options items="${fns:getDictList('reg_bus_qlsdfs')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
</tr>
<tr>
<td class="tit">权利类型</td>
<td>
<form:select path="qllx" id="qllx" onchange="tdyt(this)" class="input-large required">
<form:option value="${regBusHisLqBdcqzsdjxx.qllx }" label="${fns:getDictLabel(regBusHisLqBdcqzsdjxx.qllx, 'reg_bus_qllx', '')}"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">价格</td>
<td>
<form:input id="jg" path="jg" htmlEscape="false" class="input-medium number"/>
<span class="help-inline"><font color="#000">万</font> </span>
</td>
<td class="tit">等级</td>
<td>
<form:select id="dj" path="dj" class="input-medium ">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_tddj')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
</tr>
<tr>
<td class="tit">用途</td>
<td>
<form:select id="yt" path="yt" class="input-large required">
<form:option value="" label="" />
<form:options items="${fns:getDictList('reg_bus_tdyt')}" 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="lmbm" htmlEscape="false" id="bsmtext" value="" readOnly="true" class="input-large digits" maxlength="10"/>
</td>
<td class="tit">档案号</td>
<td>
<form:input path="dah" htmlEscape="false" maxlength="50" class="input-large "/>
</td>
</tr>
<%-- <tr>
<td class="tit">容积率</td>
<td>
<form:input id="rjl" path="rjl" htmlEscape="false" maxlength="100" class="input-large number"/>
</td>
<td class="tit">建筑密度</td>
<td>
<form:input id="jzmd" path="jzmd" htmlEscape="false" maxlength="100" class="input-large number"/>
</td>
<td class="tit">建筑限高</td>
<td>
<form:input id="jzxg" path="jzxg" htmlEscape="false" maxlength="100" class="input-large number"/>
</td>
</tr>--%>
<tr>
<td class="tit">权利性质</td>
<td>
<form:select id="qlxz" path="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>
<td class="tit">主要树种:</td>
<td><form:input path="zysz" id="zysztext" htmlEscape="false" maxlength="30" class="input-large"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">株数:</td>
<td><form:input path="zs" id="zstext" htmlEscape="false" maxlength="10" class="input-large digits"/>
</td>
</tr>
<tr>
<td class="tit">林种:</td>
<td><form:select path="lz" class="input-large ">
<form:options items="${fns:getDictList('reg_bus_lz')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select></td>
<td class="tit">林班:</td>
<td><form:input path="lb" htmlEscape="false" rows="2" maxlength="50" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span></td>
<td class="tit">造林年度:</td>
<td><form:input path="zlnd" htmlEscape="false" maxlength="4" class="input-large digits required"/>
<span class="help-inline"><font color="red">*</font> </span></td>
</tr>
<tr>
<td class="tit">起源:</td>
<td><form:select path="qy" class="input-large ">
<form:options items="${fns:getDictList('reg_bus_qy')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select></td>
<td class="tit">小班:</td>
<td><form:input path="xb" htmlEscape="false" maxlength="50" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span></td>
<td class="tit">小地名:</td>
<td><form:input path="xdm" htmlEscape="false" rows="2" maxlength="50" class="input-large "/>
<span class="help-inline"><font color="red">*</font> </span></td>
</tr>
<tr>
<td class="tit">状态</td>
<td>
<form:select id="zt" path="zt" class="input-medium ">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_bdcdyzt')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
<td class="tit">备注信息</td>
<td colspan="3">
<form:input path="remarks" htmlEscape="false" maxlength="255" class="input-xxlarge "/>
</td>
</tr>
</table>
</fieldset>
<br/>
<fieldset>
<legend>登记权属信息</legend>
<table class="table-form">
<tr>
<td class="tit">林地使用(承包)起始时间</td>
<td>
<input id="textsyqqssj" name="syqqssj" path="syqqssj" type="text" maxlength="20" class="input-medium Wdate required"
value="<fmt:formatDate value="${regBusHisLqBdcqzsdjxx.syqqssj}" pattern="yyyy-MM-dd"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
<span class="help-inline"><font color="red">*</font> </span>
<!-- <span class="help-inline"><font color="red">*</font> </span> -->
</td>
<td class="tit">原不动产单元号</td>
<td>
<form:input path="bz" htmlEscape="false" maxlength="300" class="input-medium "/>
</td>
<td class="tit">取得价格</td>
<td>
<form:input id="qdjgtext" path="qdjg" htmlEscape="false" class="input-medium number"/>万元
</td>
</tr>
<tr>
<td class="tit">林地使用(承包)结束时间</td>
<td>
<input id="textsyqjssj" name="syqjssj" path="syqjssj" type="text" maxlength="20" class="input-medium Wdate required"
value="<fmt:formatDate value="${regBusHisLqBdcqzsdjxx.syqjssj}" pattern="yyyy-MM-dd"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/><span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">登记小类</td>
<td>
<form:select path="djxl" class="input-medium required">
<form:option value="205" label="森林、林木所有权首次登记"/>
<%-- <form:options items="${fns:getDictList('reg_bus_djxl')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<%-- <form:option value="209" label="土地抵押权首次登记"/> --%>
</form:select>
<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-medium"/>
</td>
</tr>
<tr>
<td class="tit">发包方:</td>
<td><form:input id="txtfbf" path="fbf" htmlEscape="false" maxlength="50" class="input-medium required"/>
<span class="help-inline"> <font color="red">*</font> </span>
</td>
<td class="tit">森林、林木所有权人</td>
<td><form:input id="txtsllmsyqr1" path="sllmsyqr1" htmlEscape="false"
maxlength="50" class="input-medium required"/>
<span class="help-inline"> <font color="red">*</font> </span>
</td>
<td class="tit">森林、林木使用权人</td>
<td><form:input id="txtsllmsyqr2" path="sllmsyqr2" htmlEscape="false"
maxlength="50" class="input-medium required"/>
<span class="help-inline"> <font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">不动产权证书号(林权证)</td>
<td colspan="3"><form:input path="bdcqzh" id="bdcqzhid" htmlEscape="false" class="input-xxlarge required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">林地所有权性质</td>
<td><form:select id="txtLdsyqxz" path="ldsyqxz" class="input-medium">
<form:option value="${regBusHisLqBdcqzsdjxx.ldsyqxz}" label="${fns:getDictLabel(regBusHisLqBdcqzsdjxx.ldsyqxz, 'reg_bus_tdsyqxz', '')}"/>
</form:select><span class="help-inline"><font color="red">*</font> </span></td>
</tr>
<tr>
<td class="tit">登记原因</td>
<td colspan="3">
<form:input path="djyy" htmlEscape="false" rows="2" maxlength="500" class="input-xxlarge required"/><span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">附记</td>
<td colspan="3" >
<form:textarea path="fj" htmlEscape="false" maxlength="300" class="input-xxlarge "/>
</td>
</tr>
</table>
</fieldset>
<br/>
<fieldset>
<legend>权利人信息</legend>
<table class="table-form">
<div>
<c:if test="${empty VIEWS}">
<input id="btnOpen" class="btn btn-primary" style="float:right;" type="button" onclick="qlrwinOpen();" value="权利人信息添加"/>
</c:if>
<iframe id="qlrframe" name="qlrframe" src="${ctx}/reg/bus/regBusHisHouseQlr/list?YWH=${YWH}&LISTVIEWS=${VIEWS}" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
</div>
</table>
</fieldset>
<br/>
<fieldset>
<legend>已登记业务</legend>
<table class="table-form">
<tr>
<td class="tit">业务号:</td>
<td><form:input path="ywh" id="ywhtext" readOnly="true" htmlEscape="false" maxlength="20" value="${YWHIS}" class="input-large "/></td>
<td class="tit">不动产单元号:</td>
<td><form:input id="bdcdyhid" path="bdcdyh" readOnly="true" htmlEscape="false" maxlength="28" class="input-large required"/>
<!-- <span class="help-inline"><font color="red">*</font> </span>(不动产单元号为宗地代码+W00000000共28位) -->
</td>
<td class="tit">登记大类</td>
<td>
<form:select path="djlx" class="input-medium required">
<%-- <form:options items="${fns:getDictList('reg_bus_djlx')}" itemLabel="label" itemValue="value" htmlEscape="false"/> --%>
<form:option value="100" label="首次登记"/>
</form:select>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
<tr>
<td class="tit">登记机构</td>
<td>
<form:input path="djjg" id="djjgtext" htmlEscape="false" 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="50" class="input-large required"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">区县代码</td>
<td>
<form:select path="qxdm" id="qxdmtext" class="input-medium ">
<form:option value="${QXCODE }" label="${fns:getDictLabel(QXCODE, 'reg_bus_xq', '')}"/>
</form:select>
</td>
</tr>
<tr>
<td class="tit">价款:</td>
<td><form:input path="hbjk" id="qdjgtext" htmlEscape="false" class="input-large number"/>
<td class="tit">出让合同号(划拨决定书):</td>
<td><form:input path="hbhth" htmlEscape="false" maxlength="12" class="input-large "/></td>
<td class="tit">批文号:</td>
<td><form:input path="pwh" htmlEscape="false" maxlength="60" class="input-medium "/>
</td>
</tr>
<tr>
<td class="tit">发证时间:</td>
<td><input id="textfzsj" path="fzsj" name="fzsj" type="text" maxlength="20" class="input-medium Wdate required"
value="${regBusHisLqBdcqzsdjxx.fzsj}"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
<td class="tit">终止时间:</td>
<td>
<input name="zzsj" type="text" maxlength="20" class="input-medium Wdate"
value="${regBusHisLqBdcqzsdjxx.zzsj}"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
</td>
<td class="tit">登记时间</td>
<td>
<input name="djsj" type="text" maxlength="20" class="input-medium Wdate required"
value="<fmt:formatDate value="${regBusHisLqBdcqzsdjxx.djsj}" pattern="yyyy-MM-dd"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });"/>
<span class="help-inline"><font color="red">*</font> </span>
</td>
</tr>
</table>
</fieldset>
<!-- <fieldset> -->
<!-- <legend>抵押人信息</legend> -->
<!-- <table class="table-form"> -->
<!-- <div> -->
<!-- <input id="btnOpen" class="btn btn-primary" style="float:right;" type="button" onclick="ywrwinOpen();" value="抵押人信息添加"/> -->
<%-- <iframe id="ywrframe" name="ywrframe" src="${ctx}/reg/bus/regBusHisHouseYwr/list?YWH=${LSH}&xg=${xg}&H=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" --%>
<!-- marginheight="0" scrolling="yes" allowtransparency="yes"></iframe> -->
<!-- </div> -->
<!-- </table> -->
<!-- </fieldset> -->
<!-- </br> -->
<%--
<div class="control-group">
<label class="control-label">zxsj:</label>
<div class="controls">
<input name="zxsj" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate "
value="<fmt:formatDate value="${regBusHisLqBdcqzsdjxx.zxsj}" pattern="yyyy-MM-dd HH:mm:ss"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:false});"/>
</div>
</div>
--%>
<div class="form-actions">
<shiro:hasPermission name="reg:bus:regBusHisLqBdcqzsdjxx:edit">
<c:if test="${empty VIEWS}">
<input id="btnSubmit" class="btn btn-primary" type="submit" onClick="return checkQlr();" value="保 存"/> </c:if></shiro:hasPermission>
<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
</div>
</form:form>
</body>
</html>