90a86f2b by yangjianbin

init

1 parent 2c547f8e
......@@ -63,10 +63,24 @@
<div class="form-group col-sm-12 col-md-12">
<label>居住情况</label>
<div class="info">
<div class="live-info">
<input type="checkbox" checked name="">
<span><?=$clientInfoOutputVO->dwellDetail?></span>
</div>
<?php foreach ($this->session->dwellEnum as $k => $v): ?>
<div class="live-info">
<input value="1" type="radio" <?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? 'checked' : '' ?>
name="clientInfoInputVO.dwellState">
<span><?= $v ?></span>
<?php if ($k == 0): ?>
<input type="text" <?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
class="input-decoration w-50 text-c" name="clientInfoInputVO.dwellDetail" value="">
<?php elseif ($k == 1): ?>
<input type="text" <?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
name="clientInfoInputVO.dwellDetail" class="input-decoration w-50 text-c">
<?php elseif ($k == 2): ?>
<input type="text" <?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>
name="clientInfoInputVO.dwellDetail" class="input-decoration w-50 text-c">
<?php endif; ?>
</div>
<?php endforeach; ?>
<!--<div class="live-info">
<input type="checkbox" name="" checked>
<span>自建</span>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!