update-level.php 836 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use yii\widgets\ActiveForm;
  3. use common\helpers\ArrayHelper;
  4. use common\helpers\Url;
  5. $form = ActiveForm::begin([
  6. 'id' => $model->formName(),
  7. 'enableAjaxValidation' => true,
  8. 'validationUrl' => Url::to(['update-level', 'id' => $model['id']]),
  9. ]);
  10. ?>
  11. <div class="modal-header">
  12. <h4 class="modal-title">基本信息</h4>
  13. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
  14. </div>
  15. <div class="modal-body">
  16. <?= $form->field($model, 'current_level')->dropDownList($levelMap, [
  17. 'prompt' => '请选择',
  18. ]); ?>
  19. </div>
  20. <div class="modal-footer">
  21. <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
  22. <button class="btn btn-primary" type="submit">保存</button>
  23. </div>
  24. <?php ActiveForm::end(); ?>
粤ICP备19079148号