b0608ab7 by wang

Merge remote-tracking branch 'origin/develop' into develop

2 parents 1cd8f4c3 253cf667
......@@ -61,6 +61,10 @@
<span class="form-control select-box">
<select class="select" size="1">
<option>请选择</option>
<?php foreach ($this->session->repayments as $k => $v): ?>
<option <?= $applyOrderVO && $applyOrderVO->payBackType ? 'selected' : '' ?>
value="<?= $k ?>"><?= $v ?></option>
<?php endforeach; ?>
</select>
</span>
</div>
......
......@@ -72,6 +72,10 @@
<span class="form-control select-box">
<select class="select" size="1">
<option>请选择</option>
<?php foreach ($this->session->repayments as $k => $v): ?>
<option <?= $applyOrderVO && $applyOrderVO->payBackType ? '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!