| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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>
|