2abfd9b3bf3586b275d36f332f2f797be4142c52.svn-base
2.61 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>交易房屋权利信息管理</title>
<meta name="decorator" content="default"/>
<script type="text/javascript">
$(document).ready(function() {
});
</script>
<style type="text/css">
div.border{
height:100%;
padding:5px 10px;
margin: 10px 0.5%;
}
span.title{
display:block;
width:100px;
height:30px;
position:relative;
top:-15px;
text-align: center;
background: white;
}
.border-hui{
border:2px solid #CCCCCC;
}
.right{
float: right
}
.left{
float: left
}
.row{
width:100%;
}
</style>
</head>
<body>
<div class="border left border-hui" style="width:32%;">
<span class="title">房屋选择</span>
<div>
<div class="col-md-2" >
<label class="control-label"><span class="red_star">*</span>机构编号:</label>
</div>
<div class="col-md-4" style="width: 30%">
<input placeholder="机构编号" maxlength="16"/>
</div>
</div>
</div>
<div class="border right border-hui" style="width:62%;">
<form:form id="inputForm" modelAttribute="jyQlr" action="${ctx}/jy/qlr/jyQlr/save" method="post" class="form-horizontal">
<div>
<div class="border border-hui" >
<span class="title">不动产信息</span>
<div>
<div class="col-md-2" >
<label class="control-label"><span class="red_star">*</span>机构编号:</label>
</div>
<div class="col-md-4" style="width: 30%">
<input placeholder="机构编号" maxlength="16"/>
</div>
</div>
</div>
<div class="border border-hui" style="margin-top: 20px;" >
<span class="title">交易信息</span>
<div>
<div class="col-md-2" >
<label class="control-label"><span class="red_star">*</span>机构编号:</label>
</div>
<div class="col-md-4" style="width: 30%">
<input placeholder="机构编号" maxlength="16"/>
</div>
</div>
</div>
<div>
<input id="btnSubmit" class="btn btn-primary" type="submit" value="确认绑定"/>
<input id="btnCancel" class="btn" type="button" value="重置 "/>
</div>
</div>
</form:form>
</div>
</body>
</html>