Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

48 rader
1.1 KiB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\grid\GridView;
  4. /* @var $this yii\web\View */
  5. /* @var $dataProvider yii\data\ActiveDataProvider */
  6. $this->title = 'Users';
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="user-index">
  10. <h1><?= Html::encode($this->title) ?></h1>
  11. <p>
  12. <?= Html::a('Create User', ['create'], ['class' => 'btn btn-success']) ?>
  13. </p>
  14. <?= GridView::widget([
  15. 'dataProvider' => $dataProvider,
  16. 'columns' => [
  17. ['class' => 'yii\grid\SerialColumn'],
  18. 'ID',
  19. 'MAIN_CORP_ID',
  20. 'USER_NAME',
  21. 'USER_PASSWORD',
  22. 'ORG_ID',
  23. // 'TOP_ORG_ID',
  24. // 'OPERA_ORG_ID',
  25. // 'USER_SIGN',
  26. // 'USER_TYPE',
  27. // 'MENU_PERMISSION',
  28. // 'USER_ROLE',
  29. // 'TRUE_NAME',
  30. // 'STATUS',
  31. // 'CANCEL_FLAG',
  32. // 'CREATE_USER_ID',
  33. // 'CREATE_TIME',
  34. // 'UPDATE_USER_ID',
  35. // 'UPDATE_TIME',
  36. // 'PHONE_no',
  37. ['class' => 'yii\grid\ActionColumn'],
  38. ],
  39. ]); ?>
  40. </div>