2c547f8e by yangjianbin

init

1 parent 133ff695
......@@ -107,7 +107,8 @@
<label>户口所在地</label>
<span class="form-control select-box">
<select class="select" size="1">
<option><?=$clientInfoOutputVO->registerProvince?></option>
<option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 0 ? 'selected' : ''?> value="0">农村</option>
<option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 1 ? 'selected' : ''?> value="1">城镇</option>
</select>
</span>
</div>
......
......@@ -174,6 +174,10 @@
<label>户口所在地</label>
<span class="form-control select-box">
<select class="select" size="1" id="province" name="clientInfoInputVO.registerProvince">
<option value=""></option>
<option value="0">农村</option>
<option value="1">城镇</option>
</select>
</span>
</div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!