b3bd9914 by yangjianbin

init

1 parent 2d4a3a07
......@@ -67,12 +67,12 @@
<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?>">
<input type="text" class="form-control input-text" name="userName" 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">
<select class="select" size="1" name="gender">
<?php foreach ($this->session->genderEnum as $k=>$v):?>
<option <?=$clientInfoOutputVO->gender == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
<?php endforeach;?>
......@@ -82,7 +82,7 @@
<div class="form-group col-sm-3 col-md-2">
<label>婚姻</label>
<span class="form-control select-box">
<select class="select" size="1">
<select class="select" size="1" name="marriageState">
<?php foreach ($this->session->marryEnum as $k=>$v):?>
<option <?=$clientInfoOutputVO->marriageState == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
<?php endforeach;?>
......@@ -91,7 +91,7 @@
</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?>">
<input type="text" name="birthDate" class="form-control input-text Wdate" value="<?=$clientInfoOutputVO->birthDate?>">
</div>
</div>
......@@ -99,7 +99,7 @@
<div class="form-group col-sm-3 col-md-2">
<label>教育程度</label>
<span class="form-control select-box">
<select class="select" size="1">
<select class="select" size="1" name="educationDegree">
<?php foreach ($this->session->educationEnum as $k=>$v):?>
<option <?=$clientInfoOutputVO->educationDegree == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
<?php endforeach;?>
......@@ -108,20 +108,20 @@
</div>
<div class="form-group col-sm-3 col-md-2">
<label>身份证</label>
<input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>">
<input type="text" name="idCard" 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?>">
<input type="text" name="monthlyIncome" 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">
<select class="select" size="1" name="localHouse">
<option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="0"></option>
<option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="1"></option>
</select>
......@@ -134,30 +134,30 @@
<label>居住情况</label>
<div class="info">
<div class="live-info">
<input type="checkbox" name="" checked>
<input type="checkbox" name="dwellState">
<span>自建</span>
<input type="text" class="input-decoration w-50 text-c" value="5">
<input type="text" class="input-decoration w-50 text-c" name="dwellDetail" value="">
</div>
<div class="live-info">
<input type="checkbox" name="">
<input type="checkbox" name="dwellState">
<span>自购无按揭</span>
<input type="text" class="input-decoration w-50 text-c">
<input type="text" name="dwellDetail" class="input-decoration w-50 text-c">
</div>
<div class="live-info">
<input type="checkbox" name="">
<input type="checkbox" name="dwellState">
<span>按揭</span>
<input type="text" class="input-decoration w-50 text-c">
<input type="text" name="dwellDetail" class="input-decoration w-50 text-c">
</div>
<div class="live-info">
<input type="checkbox" name="">
<input type="checkbox" name="dwellState">
<span>租用</span>
</div>
<div class="live-info">
<input type="checkbox" name="">
<input type="checkbox" name="dwellState">
<span>亲属住房</span>
</div>
<div class="live-info">
<input type="checkbox" name="">
<input type="checkbox" name="dwellState">
<span>单位住房</span>
</div>
</div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!