|
- <?php
-
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
-
- /* @var $this yii\web\View */
- /* @var $model common\models\searchRole */
- /* @var $form yii\widgets\ActiveForm */
- ?>
-
- <div class="base-role-search">
-
- <?php $form = ActiveForm::begin([
- 'action' => ['index'],
- 'method' => 'get',
- ]); ?>
-
- <?= $form->field($model, 'ID') ?>
-
- <?= $form->field($model, 'MENU_TITLE') ?>
-
- <?= $form->field($model, 'ROLE_NAME') ?>
-
- <?= $form->field($model, 'PARENT_MENU_ID') ?>
-
- <?= $form->field($model, 'MENU_ICON') ?>
-
- <?php // echo $form->field($model, 'CANCEL_FLAG') ?>
-
- <?php // echo $form->field($model, 'CREATE_USER_ID') ?>
-
- <?php // echo $form->field($model, 'CREATE_TIME') ?>
-
- <?php // echo $form->field($model, 'UPDATE_USER_ID') ?>
-
- <?php // echo $form->field($model, 'UPDATE_TIME') ?>
-
- <?php // echo $form->field($model, 'TARGET') ?>
-
- <?php // echo $form->field($model, 'SEQ') ?>
-
- <?php // echo $form->field($model, 'NOTE') ?>
-
- <div class="form-group">
- <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
- <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
- </div>
-
- <?php ActiveForm::end(); ?>
-
- </div>
|