| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /* @var $this \yii\web\View */
- ?>
- <style>
- table th{
- text-align:right;
- padding-right:10px;
- }
- </style>
- <div class="row">
- <div class="col-md-3">
- <?= $this->render('/common/_left_menu.php') ?>
- </div>
- <div class="col-md-9">
- <div class="ibox">
- <div class="ibox-title">
- <h5>基本资料</h5>
- </div>
- <div class="ibox-content">
- <table class="table table-bordered">
- <tr>
- <th width="120">邮箱:</th>
- <td><?= $memberInfo['username'] ?></td>
- </tr>
- <tr>
- <th>姓名:</th>
- <td><?= $memberInfo['name'] ?></td>
- </tr>
- <tr>
- <th>性别:</th>
- <td><?= $memberInfo['gender'] ?></td>
- </tr>
- <tr>
- <th>手机号码:</th>
- <td><?= $memberInfo['mobile'] ?></td>
- </tr>
- <tr>
- <th>出生日期:</th>
- <td><?= $memberInfo['birthday'] ?></td>
- </tr>
- <tr>
- <th>身份证号码:</th>
- <td><?= $memberInfo['id_no'] ?></td>
- </tr>
- <tr>
- <th>地址:</th>
- <td><?= $memberInfo['address'] ?></td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
|