借款人信息.php
5.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
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
<div class="panel panel-default mb-20">
<div class="panel-header">借款人信息</div>
<div class="panel-body">
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>姓名</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->userName?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>性别</label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->gender?></option>
</select>
</span>
</div>
<div class="form-group col-sm-3 col-md-2">
<label>婚姻 </label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->marriageState?></option>
</select>
</span>
</div>
<div class="form-group col-sm-3 col-md-2">
<label>出生日期</label>
<input type="text" class="form-control input-text Wdate" value="<?=$clientInfoOutputVO->birthDate?>" onfocus="WdatePicker()">
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>教育程度</label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->educationDegree?></option>
</select>
</span>
</div>
<div class="form-group col-sm-3 col-md-2">
<label>身份证</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>">
</div>
</div>
<div class="row cl">
<div class="form-group has-feedback col-sm-3 col-md-2">
<label>月收入</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->monthlyIncome?>">
<span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
</div>
<div class="form-group col-sm-3 col-md-2">
<label>有无本地房产</label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->localHouse ? '有' : '无'?></option>
</select>
</span>
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-12 col-md-12">
<label>居住情况</label>
<div class="info">
<div class="live-info">
<input type="checkbox" checked name="">
<span><?=$clientInfoOutputVO->dwellDetail?></span>
</div>
<!--<div class="live-info">
<input type="checkbox" name="" checked>
<span>自建</span>
<input type="text" class="input-decoration w-50 text-c" value="5"> 层
</div>
<div class="live-info">
<input type="checkbox" name="">
<span>自购无按揭</span>
<input type="text" class="input-decoration w-50 text-c"> 万
</div>
<div class="live-info">
<input type="checkbox" name="">
<span>按揭</span>
<input type="text" class="input-decoration w-50 text-c"> 万
</div>
<div class="live-info">
<input type="checkbox" name="">
<span>租用</span>
</div>
<div class="live-info">
<input type="checkbox" name="">
<span>亲属住房</span>
</div>
<div class="live-info">
<input type="checkbox" name="">
<span>单位住房</span>
</div>-->
</div>
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>手机</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->phoneNumber?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>户口所在地</label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->registerProvince?></option>
</select>
</span>
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-6 col-md-4">
<label>户口详细地址</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->registerDetailAddress?>">
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-6 col-md-4">
<label>现居住地址</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->currentAddress?>">
</div>
</div>
</div>
</div>