...
|
...
|
@@ -99,8 +99,6 @@ |
|
|
<tr>
|
|
|
<th width="100">有无社保</th>
|
|
|
<td>
|
|
|
<input class="form-control" type="text" name="social"
|
|
|
id="social" value="{$data.social}" placeholder="请输入有无社保"/>
|
|
|
<label><input type="radio" name="social" value="有" <eq name="$data.social" value="有">checked</eq> />有</label>
|
|
|
<label><input type="radio" name="social" value="无" <eq name="$data.social" value="无">checked</eq> />无</label>
|
|
|
</td>
|
...
|
...
|
@@ -108,8 +106,6 @@ |
|
|
<tr>
|
|
|
<th width="100">家庭年收入</th>
|
|
|
<td>
|
|
|
<input class="form-control" type="text" name="year_income"
|
|
|
id="year_income" value="{$data.year_income}" placeholder="请输入家庭年收入"/>
|
|
|
<select class="form-control" name="year_income">
|
|
|
<option value='5万以下' <eq name="$data.year_income" value="5万以下">selected</eq>>5万以下</option>
|
|
|
<option value='5-15万' <eq name="$data.year_income" value="5-15万">selected</eq>>5-15万</option>
|
...
|
...
|
@@ -160,8 +156,6 @@ |
|
|
<tr>
|
|
|
<th width="100">你更关心您家人哪方面保障</th>
|
|
|
<td>
|
|
|
<input class="form-control" type="text" name="safeguard"
|
|
|
id="safeguard" value="{$data.safeguard}" placeholder="请输入保障"/>
|
|
|
<php>$safeguard=explode(',',$data['safeguard']);</php>
|
|
|
<label><input type="checkbox" name="safeguard[]" value="旅游" <foreach name="$safeguard" item="s"><eq name="$s" value="旅游">checked</eq></foreach> />旅游</label>
|
|
|
<label><input type="checkbox" name="safeguard[]" value="意外" <foreach name="$safeguard" item="s"><eq name="$s" value="意外">checked</eq></foreach> />意外</label>
|
...
|
...
|
|