fabb5f32 by yangjianbin

init

1 parent 95566c49
......@@ -19,7 +19,9 @@
<label>还款方式</label>
<span class="form-control select-box">
<select class="select" size="1" disabled>
<option><?=$applyOrderVO->payBackType?></option>
<?php foreach ($this->session->repayments as $k=>$v): ?>
<option <?=$v == $applyOrderVO->payBackType ? 'selected' : '' ?> value="<?=$k?>"><?=$v?></option>
<?php endforeach; ?>
</select>
</span>
</div>
......@@ -27,7 +29,9 @@
<label>贷款用途</label>
<span class="form-control select-box">
<select class="select" size="1" disabled>
<option><?=$applyOrderVO->use?></option>
<?php foreach ($this->session->loanUseEnum as $k => $v): ?>
<option <?=$applyOrderVO->use == $k ? 'selected' : '' ?> value="<?= $k ?>"><?= $v ?></option>
<?php endforeach; ?>
</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!