fb664cdc by yangjianbin

init

1 parent 3ab0911a
......@@ -12,9 +12,9 @@
<label>银行黑名单</label>
<span class="form-control select-box">
<select class="select" size="1" name="hasBankBlacklist">
<!-- <option value="1">是</option>-->
<!-- <option value="0">否</option>-->
<option value=""><?=$credit && $credit->hasBankBlacklist ? '是' : '否'?></option>
<option value=""</option>
<option <?=$credit && $credit->hasBankBlacklist ==1 ? 'selected' : ''?> value="1"></option>
<option <?=$credit && $credit->hasBankBlacklist ==0 ? 'selected' : ''?> value="0"></option>
</select>
</span>
</div>
......@@ -22,9 +22,9 @@
<label>同业进件</label>
<span class="form-control select-box">
<select class="select" size="1" name="hasTradeInto">
<!-- <option value="1">是</option>-->
<!-- <option value="0">否</option>-->
<option value=""><?=$credit && $credit->hasTradeInto ? '是' : '否'?></option>
<option value=""</option>
<option <?=$credit && $credit->hasTradeInto ==1 ? 'selected' : ''?> value="1"></option>
<option <?=$credit && $credit->hasTradeInto ==0 ? 'selected' : ''?> value="0"></option>
</select>
</span>
</div>
......@@ -32,9 +32,9 @@
<label>征信五级分类异常</label>
<span class="form-control select-box">
<select class="select" size="1" name="hasCreditTypeException">
<option value=""><?=$credit && $credit->hasCreditTypeException ? '是' : '否'?></option>
<!--<option value="1">是</option>
<option value="0">否</option>-->
<option value=""</option>
<option <?=$credit && $credit->hasCreditTypeException ==1 ? 'selected' : ''?> value="1"></option>
<option <?=$credit && $credit->hasCreditTypeException ==0 ? 'selected' : ''?> value="0"></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!