|
- <?php
-
- use yii\helpers\Html;
- use yii\widgets\DetailView;
-
- /* @var $this yii\web\View */
- /* @var $model common\models\User */
-
- $this->title = $model->ID;
- $this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="user-view">
-
- <h1><?= Html::encode($this->title) ?></h1>
-
- <p>
- <?= Html::a('Update', ['update', 'id' => $model->ID], ['class' => 'btn btn-primary']) ?>
- <?= Html::a('Delete', ['delete', 'id' => $model->ID], [
- 'class' => 'btn btn-danger',
- 'data' => [
- 'confirm' => 'Are you sure you want to delete this item?',
- 'method' => 'post',
- ],
- ]) ?>
- </p>
-
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'ID',
- 'MAIN_CORP_ID',
- 'USER_NAME',
- 'USER_PASSWORD',
- 'ORG_ID',
- 'TOP_ORG_ID',
- 'OPERA_ORG_ID',
- 'USER_SIGN',
- 'USER_TYPE',
- 'MENU_PERMISSION',
- 'USER_ROLE',
- 'TRUE_NAME',
- 'STATUS',
- 'CANCEL_FLAG',
- 'CREATE_USER_ID',
- 'CREATE_TIME',
- 'UPDATE_USER_ID',
- 'UPDATE_TIME',
- 'PHONE_no',
- ],
- ]) ?>
-
- </div>
|