借款人信息.php 7.13 KB
<div class="panel panel-default mb-20">
    <div class="panel-header">借款人信息</div>
    <div class="panel-body">
        <div class="row cl">
            <div class="form-group col-sm-3 col-md-2">
                <label>姓名</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->userName?>">
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>性别</label>
                <span class="form-control select-box">
                    <select class="select" size="1">
                        <option><?=$clientInfoOutputVO->gender?></option>
                    </select>
                </span>
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>婚姻 </label>
                <span class="form-control select-box">
                    <select class="select" size="1">
                        <option><?=$clientInfoOutputVO->marriageState?></option>
                    </select>
                </span>
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>出生日期</label>
                <input type="text" class="form-control input-text Wdate" value="<?=date('Y-m-d',strtotime($clientInfoOutputVO->birthDate))?>" onfocus="WdatePicker()">
            </div>
        </div>

        <div class="row cl">
            <div class="form-group col-sm-3 col-md-2">
                <label>教育程度</label>
                <span class="form-control select-box">
                    <select class="select" size="1">
                        <option><?=$clientInfoOutputVO->educationDegree?></option>
                    </select>
                </span>
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>身份证</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>">
            </div>
        </div>

        <div class="row cl">
            <div class="form-group has-feedback col-sm-3 col-md-2">
                <label>月收入</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->monthlyIncome?>">
                <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>有无本地房产</label>
                <span class="form-control select-box">
                    <select class="select" size="1">
                        <option><?=$clientInfoOutputVO->localHouse ? '有' : '无'?></option>
                    </select>
                </span>
            </div>
        </div>

        <div class="row cl">
            <div class="form-group col-sm-12 col-md-12">
                <label>居住情况</label>
                <div class="info">
                    <?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"
                                       class="input-decoration w-50 text-c" name="clientInfoInputVO.dwellDetail" value="<?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>">
                            <?php elseif ($k == 1): ?>
                                <input type="text" value="<?= $clientInfoOutputVO && $clientInfoOutputVO->dwellState == $k ? $clientInfoOutputVO->dwellDetail : '' ?>"
                                       name="clientInfoInputVO.dwellDetail" class="input-decoration w-50 text-c">
                            <?php elseif ($k == 2): ?>
                                <input type="text" value="<?= $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>
                        <input type="text" class="input-decoration w-50 text-c" value="5"> 层
                    </div>
                    <div class="live-info">
                        <input type="checkbox" name="">
                        <span>自购无按揭</span>
                        <input type="text" class="input-decoration w-50 text-c"> 万
                    </div>
                    <div class="live-info">
                        <input type="checkbox" name="">
                        <span>按揭</span>
                        <input type="text" class="input-decoration w-50 text-c"> 万
                    </div>
                    <div class="live-info">
                        <input type="checkbox" name="">
                        <span>租用</span>
                    </div>
                    <div class="live-info">
                        <input type="checkbox" name="">
                        <span>亲属住房</span>
                    </div>
                    <div class="live-info">
                        <input type="checkbox" name="">
                        <span>单位住房</span>
                    </div>-->
                </div>
            </div>
        </div>

        <div class="row cl">
            <div class="form-group col-sm-3 col-md-2">
                <label>手机</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->phoneNumber?>">
            </div>
            <div class="form-group col-sm-3 col-md-2">
                <label>户口所在地</label>
                <span class="form-control select-box">
                    <select class="select" size="1">
                        <option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 0 ? 'selected' : ''?> value="0">农村</option>
                        <option <?=$clientInfoOutputVO && $clientInfoOutputVO->registerProvince == 1 ? 'selected' : ''?>  value="1">城镇</option>
                    </select>
                </span>
            </div>
        </div>

        <div class="row cl">
            <div class="form-group col-sm-6 col-md-4">
                <label>户口详细地址</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->registerDetailAddress?>">
            </div>
        </div>

        <div class="row cl">
            <div class="form-group col-sm-6 col-md-4">
                <label>现居住地址</label>
                <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->currentAddress?>">
            </div>
        </div>
    </div>
</div>