e1c8e8c9 by yangjianbin

init

1 parent 0cd23b96
...@@ -15,15 +15,15 @@ ...@@ -15,15 +15,15 @@
15 <div class="panel-body cl"> 15 <div class="panel-body cl">
16 <div class="row cl text-c"> 16 <div class="row cl text-c">
17 17
18 <?php foreach ($this->session->products as $k => $v):?> 18 <?php foreach ($this->session->products as $k => $v): ?>
19 <div class="col-sm-4 mb-20"> 19 <div class="col-sm-4 mb-20">
20 <label class="radio"> 20 <label class="radio">
21 <input type="radio" value="<?=$v->id?>" name="1"/> 21 <input type="radio" value="<?= $v->id ?>" name="1"/>
22 <img width="160" height="160" src="holder.js/180x18"> 22 <img width="160" height="160" src="holder.js/180x18">
23 <?=$v->productName?> 23 <?= $v->productName ?>
24 </label> 24 </label>
25 </div> 25 </div>
26 <?php endforeach;?> 26 <?php endforeach; ?>
27 27
28 <!--<div class="col-sm-4 mb-20"> 28 <!--<div class="col-sm-4 mb-20">
29 <label class="radio"> 29 <label class="radio">
...@@ -67,15 +67,17 @@ ...@@ -67,15 +67,17 @@
67 <div class="row cl"> 67 <div class="row cl">
68 <div class="form-group col-sm-3 col-md-2"> 68 <div class="form-group col-sm-3 col-md-2">
69 <label>姓名</label> 69 <label>姓名</label>
70 <input type="text" class="form-control input-text" name="userName" value="<?=$clientInfoOutputVO->userName?>"> 70 <input type="text" class="form-control input-text" name="userName"
71 value="<?= $clientInfoOutputVO->userName ?>">
71 </div> 72 </div>
72 <div class="form-group col-sm-3 col-md-2"> 73 <div class="form-group col-sm-3 col-md-2">
73 <label>性别</label> 74 <label>性别</label>
74 <span class="form-control select-box"> 75 <span class="form-control select-box">
75 <select class="select" size="1" name="gender"> 76 <select class="select" size="1" name="gender">
76 <?php foreach ($this->session->genderEnum as $k=>$v):?> 77 <?php foreach ($this->session->genderEnum as $k => $v): ?>
77 <option <?=$clientInfoOutputVO->gender == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 78 <option <?= $clientInfoOutputVO->gender == $k ? 'selected' : '' ?>
78 <?php endforeach;?> 79 value="<?= $k ?>"><?= $v ?></option>
80 <?php endforeach; ?>
79 </select> 81 </select>
80 </span> 82 </span>
81 </div> 83 </div>
...@@ -83,15 +85,17 @@ ...@@ -83,15 +85,17 @@
83 <label>婚姻</label> 85 <label>婚姻</label>
84 <span class="form-control select-box"> 86 <span class="form-control select-box">
85 <select class="select" size="1" name="marriageState"> 87 <select class="select" size="1" name="marriageState">
86 <?php foreach ($this->session->marryEnum as $k=>$v):?> 88 <?php foreach ($this->session->marryEnum as $k => $v): ?>
87 <option <?=$clientInfoOutputVO->marriageState == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 89 <option <?= $clientInfoOutputVO->marriageState == $k ? 'selected' : '' ?>
88 <?php endforeach;?> 90 value="<?= $k ?>"><?= $v ?></option>
91 <?php endforeach; ?>
89 </select> 92 </select>
90 </span> 93 </span>
91 </div> 94 </div>
92 <div class="form-group col-sm-3 col-md-2"> 95 <div class="form-group col-sm-3 col-md-2">
93 <label>出生日期</label> 96 <label>出生日期</label>
94 <input type="text" name="birthDate" class="form-control input-text Wdate" value="<?=$clientInfoOutputVO->birthDate?>" onfocus="WdatePicker()"> 97 <input type="text" name="birthDate" class="form-control input-text Wdate"
98 value="<?= $clientInfoOutputVO->birthDate ?>" onfocus="WdatePicker()">
95 </div> 99 </div>
96 </div> 100 </div>
97 101
...@@ -100,30 +104,35 @@ ...@@ -100,30 +104,35 @@
100 <label>教育程度</label> 104 <label>教育程度</label>
101 <span class="form-control select-box"> 105 <span class="form-control select-box">
102 <select class="select" size="1" name="educationDegree"> 106 <select class="select" size="1" name="educationDegree">
103 <?php foreach ($this->session->educationEnum as $k=>$v):?> 107 <?php foreach ($this->session->educationEnum as $k => $v): ?>
104 <option <?=$clientInfoOutputVO->educationDegree == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 108 <option <?= $clientInfoOutputVO->educationDegree == $k ? 'selected' : '' ?>
105 <?php endforeach;?> 109 value="<?= $k ?>"><?= $v ?></option>
110 <?php endforeach; ?>
106 </select> 111 </select>
107 </span> 112 </span>
108 </div> 113 </div>
109 <div class="form-group col-sm-3 col-md-2"> 114 <div class="form-group col-sm-3 col-md-2">
110 <label>身份证</label> 115 <label>身份证</label>
111 <input type="text" name="idCard" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>"> 116 <input type="text" name="idCard" class="form-control input-text"
117 value="<?= $clientInfoOutputVO->idCard ?>">
112 </div> 118 </div>
113 </div> 119 </div>
114 120
115 <div class="row cl"> 121 <div class="row cl">
116 <div class="form-group has-feedback col-sm-3 col-md-2"> 122 <div class="form-group has-feedback col-sm-3 col-md-2">
117 <label>月收入</label> 123 <label>月收入</label>
118 <input type="text" name="monthlyIncome" class="form-control input-text" value="<?=$clientInfoOutputVO->monthlyIncome?>"> 124 <input type="text" name="monthlyIncome" class="form-control input-text"
125 value="<?= $clientInfoOutputVO->monthlyIncome ?>">
119 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> 126 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
120 </div> 127 </div>
121 <div class="form-group col-sm-3 col-md-2"> 128 <div class="form-group col-sm-3 col-md-2">
122 <label>有无本地房产</label> 129 <label>有无本地房产</label>
123 <span class="form-control select-box"> 130 <span class="form-control select-box">
124 <select class="select" size="1" name="localHouse"> 131 <select class="select" size="1" name="localHouse">
125 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="0"></option> 132 <option <?= $clientInfoOutputVO->localHouse == $k ? 'selected' : '' ?>
126 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="1"></option> 133 value="0"></option>
134 <option <?= $clientInfoOutputVO->localHouse == $k ? 'selected' : '' ?>
135 value="1"></option>
127 </select> 136 </select>
128 </span> 137 </span>
129 </div> 138 </div>
...@@ -133,19 +142,23 @@ ...@@ -133,19 +142,23 @@
133 <div class="form-group col-sm-12 col-md-12"> 142 <div class="form-group col-sm-12 col-md-12">
134 <label>居住情况</label> 143 <label>居住情况</label>
135 <div class="info"> 144 <div class="info">
136 <?php foreach ($this->session->dwellEnum as $k=>$v):?> 145 <?php foreach ($this->session->dwellEnum as $k => $v): ?>
137 <div class="live-info"> 146 <div class="live-info">
138 <input type="checkbox" <?=$clientInfoOutputVO->dwellState == $k ? 'checked' : ''?> name="dwellState"> 147 <input type="checkbox" <?= $clientInfoOutputVO->dwellState == $k ? 'checked' : '' ?>
139 <span><?=$v?></span> 148 name="dwellState">
140 <?php if($k == 0):?> 149 <span><?= $v ?></span>
141 <input type="text" <?=$clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : ''?> class="input-decoration w-50 text-c" name="dwellDetail" value=""> 层 150 <?php if ($k == 0): ?>
142 <?php elseif ($k == 1):?> 151 <input type="text" <?= $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
143 <input type="text" <?=$clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : ''?> name="dwellDetail" class="input-decoration w-50 text-c"> 万 152 class="input-decoration w-50 text-c" name="dwellDetail" value="">
144 <?php elseif ($k == 2):?> 153 <?php elseif ($k == 1): ?>
145 <input type="text" <?=$clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : ''?> name="dwellDetail" class="input-decoration w-50 text-c"> 万 154 <input type="text" <?= $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
146 <?php endif;?> 155 name="dwellDetail" class="input-decoration w-50 text-c">
156 <?php elseif ($k == 2): ?>
157 <input type="text" <?= $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
158 name="dwellDetail" class="input-decoration w-50 text-c">
159 <?php endif; ?>
147 </div> 160 </div>
148 <?php endforeach;?> 161 <?php endforeach; ?>
149 <!--<div class="live-info"> 162 <!--<div class="live-info">
150 <input type="checkbox" name="dwellState"> 163 <input type="checkbox" name="dwellState">
151 <span>自建</span> 164 <span>自建</span>
...@@ -180,7 +193,8 @@ ...@@ -180,7 +193,8 @@
180 <div class="row cl"> 193 <div class="row cl">
181 <div class="form-group col-sm-3 col-md-2"> 194 <div class="form-group col-sm-3 col-md-2">
182 <label>手机</label> 195 <label>手机</label>
183 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->phoneNumber?>"> 196 <input type="text" class="form-control input-text"
197 value="<?= $clientInfoOutputVO->phoneNumber ?>">
184 </div> 198 </div>
185 <div class="form-group col-sm-3 col-md-2"> 199 <div class="form-group col-sm-3 col-md-2">
186 <label>户口所在地</label> 200 <label>户口所在地</label>
...@@ -195,14 +209,16 @@ ...@@ -195,14 +209,16 @@
195 <div class="row cl"> 209 <div class="row cl">
196 <div class="form-group col-sm-6 col-md-4"> 210 <div class="form-group col-sm-6 col-md-4">
197 <label>户口详细地址</label> 211 <label>户口详细地址</label>
198 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->registerDetailAddress?>"> 212 <input type="text" class="form-control input-text"
213 value="<?= $clientInfoOutputVO->registerDetailAddress ?>">
199 </div> 214 </div>
200 </div> 215 </div>
201 216
202 <div class="row cl"> 217 <div class="row cl">
203 <div class="form-group col-sm-6 col-md-4"> 218 <div class="form-group col-sm-6 col-md-4">
204 <label>现居住地址</label> 219 <label>现居住地址</label>
205 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->currentAddress?>"> 220 <input type="text" class="form-control input-text"
221 value="<?= $clientInfoOutputVO->currentAddress ?>">
206 </div> 222 </div>
207 </div> 223 </div>
208 </div> 224 </div>
...@@ -214,57 +230,66 @@ ...@@ -214,57 +230,66 @@
214 <div class="row cl"> 230 <div class="row cl">
215 <div class="form-group col-sm-3 col-md-2"> 231 <div class="form-group col-sm-3 col-md-2">
216 <label>单位名称</label> 232 <label>单位名称</label>
217 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->unitName : ''?>"> 233 <input type="text" class="form-control input-text"
234 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitName : '' ?>">
218 </div> 235 </div>
219 <div class="form-group col-sm-3 col-md-2"> 236 <div class="form-group col-sm-3 col-md-2">
220 <label>部门</label> 237 <label>部门</label>
221 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->department : ''?>"> 238 <input type="text" class="form-control input-text"
239 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->department : '' ?>">
222 </div> 240 </div>
223 <div class="form-group col-sm-3 col-md-2"> 241 <div class="form-group col-sm-3 col-md-2">
224 <label>单位性质</label> 242 <label>单位性质</label>
225 <span class="form-control select-box"> 243 <span class="form-control select-box">
226 <select class="select" size="1"> 244 <select class="select" size="1">
227 <?php foreach ($this->session->unitEnum as $k=>$v):?> 245 <?php foreach ($this->session->unitEnum as $k => $v): ?>
228 <option <?=$clientUnitOutputVO && $clientUnitOutputVO->unitNature == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 246 <option <?= $clientUnitOutputVO && $clientUnitOutputVO->unitNature == $k ? 'selected' : '' ?>
229 <?php endforeach;?> 247 value="<?= $k ?>"><?= $v ?></option>
248 <?php endforeach; ?>
230 </select> 249 </select>
231 </span> 250 </span>
232 </div> 251 </div>
233 <div class="form-group col-sm-3 col-md-2"> 252 <div class="form-group col-sm-3 col-md-2">
234 <label>职位名称</label> 253 <label>职位名称</label>
235 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : ''?>"> 254 <input type="text" class="form-control input-text"
255 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : '' ?>">
236 </div> 256 </div>
237 </div> 257 </div>
238 258
239 <div class="row cl"> 259 <div class="row cl">
240 <div class="form-group col-sm-3 col-md-2"> 260 <div class="form-group col-sm-3 col-md-2">
241 <label>现单位入职时间</label> 261 <label>现单位入职时间</label>
242 <input type="text" class="form-control input-text Wdate" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : ''?>"> 262 <input type="text" class="form-control input-text Wdate"
263 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : '' ?>">
243 </div> 264 </div>
244 <div class="form-group col-sm-3 col-md-2"> 265 <div class="form-group col-sm-3 col-md-2">
245 <label>现单位工作年限</label> 266 <label>现单位工作年限</label>
246 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitWorkYears : ''?>"> 267 <input type="text" class="form-control input-text"
268 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->currentUnitWorkYears : '' ?>">
247 <span class="glyphicon glyphicon-year form-control-feedback" aria-hidden="true"></span> 269 <span class="glyphicon glyphicon-year form-control-feedback" aria-hidden="true"></span>
248 </div> 270 </div>
249 <div class="form-group col-sm-3 col-md-2"> 271 <div class="form-group col-sm-3 col-md-2">
250 <label>现单位电话</label> 272 <label>现单位电话</label>
251 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : ''?>"> 273 <input type="text" class="form-control input-text"
274 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>">
252 </div> 275 </div>
253 </div> 276 </div>
254 277
255 <div class="row cl"> 278 <div class="row cl">
256 <div class="form-group col-sm-3 col-md-2"> 279 <div class="form-group col-sm-3 col-md-2">
257 <label>月收入</label> 280 <label>月收入</label>
258 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->monthlyIncome : ''?>"> 281 <input type="text" class="form-control input-text"
282 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->monthlyIncome : '' ?>">
259 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> 283 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
260 </div> 284 </div>
261 <div class="form-group col-sm-3 col-md-2"> 285 <div class="form-group col-sm-3 col-md-2">
262 <label>工资发放形式</label> 286 <label>工资发放形式</label>
263 <span class="form-control select-box"> 287 <span class="form-control select-box">
264 <select class="select" size="1"> 288 <select class="select" size="1">
265 <?php foreach ($this->session->wagePaymentFormEnum as $k=>$v):?> 289 <?php foreach ($this->session->wagePaymentFormEnum as $k => $v): ?>
266 <option <?=$clientUnitOutputVO && $clientUnitOutputVO->salaryGrantForm == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 290 <option <?= $clientUnitOutputVO && $clientUnitOutputVO->salaryGrantForm == $k ? 'selected' : '' ?>
267 <?php endforeach;?> 291 value="<?= $k ?>"><?= $v ?></option>
292 <?php endforeach; ?>
268 </select> 293 </select>
269 </span> 294 </span>
270 </div> 295 </div>
...@@ -273,7 +298,8 @@ ...@@ -273,7 +298,8 @@
273 <div class="row cl"> 298 <div class="row cl">
274 <div class="form-group col-sm-6 col-md-4"> 299 <div class="form-group col-sm-6 col-md-4">
275 <label>现单位所在地</label> 300 <label>现单位所在地</label>
276 <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitAddress : ''?>"> 301 <input type="text" class="form-control input-text"
302 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->currentUnitAddress : '' ?>">
277 </div> 303 </div>
278 </div> 304 </div>
279 </div> 305 </div>
...@@ -347,14 +373,18 @@ ...@@ -347,14 +373,18 @@
347 <div class="row cl"> 373 <div class="row cl">
348 <div class="form-group col-sm-3 col-md-2"> 374 <div class="form-group col-sm-3 col-md-2">
349 <label>申请金额</label> 375 <label>申请金额</label>
350 <input type="text" class="form-control input-text" value="XXX"> 376 <input type="text" class="form-control input-text"
377 value="<?= $applyOrderVO ? $applyOrderVO->applyMoney : '' ?>">
351 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> 378 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
352 </div> 379 </div>
353 <div class="form-group col-sm-3 col-md-2"> 380 <div class="form-group col-sm-3 col-md-2">
354 <label>贷款期限</label> 381 <label>贷款期限</label>
355 <span class="form-control select-box"> 382 <span class="form-control select-box">
356 <select class="select" size="1"> 383 <select class="select" size="1">
357 <option value="1"></option> 384 <?php for ($i = 1; $i <= 12; $i++): ?>
385 <option <?= $applyOrderVO && $applyOrderVO->deadline ? 'selected' : '' ?>
386 value="<?= $i ?>"><?= $i ?></option>
387 <?php endfor; ?>
358 </select> 388 </select>
359 </span> 389 </span>
360 </div> 390 </div>
...@@ -362,7 +392,10 @@ ...@@ -362,7 +392,10 @@
362 <label>还款方式</label> 392 <label>还款方式</label>
363 <span class="form-control select-box"> 393 <span class="form-control select-box">
364 <select class="select" size=c""> 394 <select class="select" size=c"">
365 <option value="1"></option> 395 <?php foreach ($this->session->repayments as $k => $v): ?>
396 <option <?= $applyOrderVO && $applyOrderVO->payBackType ? 'selected' : '' ?>
397 value="<?= $k ?>"><?= $v ?></option>
398 <?php endforeach; ?>
366 </select> 399 </select>
367 </span> 400 </span>
368 </div> 401 </div>
...@@ -370,9 +403,9 @@ ...@@ -370,9 +403,9 @@
370 <label>贷款用途</label> 403 <label>贷款用途</label>
371 <span class="form-control select-box"> 404 <span class="form-control select-box">
372 <select class="select" size="1"> 405 <select class="select" size="1">
373 <?php foreach ($this->session->loanUseEnum as $k=>$v):?> 406 <?php foreach ($this->session->loanUseEnum as $k => $v): ?>
374 <option value="<?=$k?>"><?=$v?></option> 407 <option value="<?= $k ?>"><?= $v ?></option>
375 <?php endforeach;?> 408 <?php endforeach; ?>
376 </select> 409 </select>
377 </span> 410 </span>
378 </div> 411 </div>
...@@ -396,9 +429,9 @@ ...@@ -396,9 +429,9 @@
396 <label>贷款用途性质</label> 429 <label>贷款用途性质</label>
397 <span class="form-control select-box"> 430 <span class="form-control select-box">
398 <select class="select" size="1"> 431 <select class="select" size="1">
399 <?php foreach ($this->session->loanNatureEnum as $k=>$v):?> 432 <?php foreach ($this->session->loanNatureEnum as $k => $v): ?>
400 <option value="<?=$k?>"><?=$v?></option> 433 <option value="<?= $k ?>"><?= $v ?></option>
401 <?php endforeach;?> 434 <?php endforeach; ?>
402 </select> 435 </select>
403 </span> 436 </span>
404 </div> 437 </div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!