init
Showing
2 changed files
with
6 additions
and
1 deletions
| ... | @@ -107,7 +107,8 @@ | ... | @@ -107,7 +107,8 @@ |
| 107 | <label>户口所在地</label> | 107 | <label>户口所在地</label> |
| 108 | <span class="form-control select-box"> | 108 | <span class="form-control select-box"> |
| 109 | <select class="select" size="1"> | 109 | <select class="select" size="1"> |
| 110 | <option><?=$clientInfoOutputVO->registerProvince?></option> | 110 | <option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 0 ? 'selected' : ''?> value="0">农村</option> |
| 111 | <option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 1 ? 'selected' : ''?> value="1">城镇</option> | ||
| 111 | </select> | 112 | </select> |
| 112 | </span> | 113 | </span> |
| 113 | </div> | 114 | </div> | ... | ... |
| ... | @@ -174,6 +174,10 @@ | ... | @@ -174,6 +174,10 @@ |
| 174 | <label>户口所在地</label> | 174 | <label>户口所在地</label> |
| 175 | <span class="form-control select-box"> | 175 | <span class="form-control select-box"> |
| 176 | <select class="select" size="1" id="province" name="clientInfoInputVO.registerProvince"> | 176 | <select class="select" size="1" id="province" name="clientInfoInputVO.registerProvince"> |
| 177 | <option value=""></option> | ||
| 178 | <option value="0">农村</option> | ||
| 179 | <option value="1">城镇</option> | ||
| 180 | |||
| 177 | </select> | 181 | </select> |
| 178 | </span> | 182 | </span> |
| 179 | </div> | 183 | </div> | ... | ... |
-
Please register or sign in to post a comment