You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
599 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: livan
  5. * Date: 2018/7/9
  6. * Time: 14:22
  7. */
  8. use yii\helpers\Html;
  9. ?>
  10. <div>
  11. <div class="row">
  12. <div class="col-lg-3">
  13. <?= $form->field($model, 'description')->widget('common\widgets\ueditor\Ueditor',[
  14. 'options'=>[
  15. 'initialFrameWidth' => 760,//宽度
  16. 'initialFrameHeight' => 500,//高度
  17. ]
  18. ]) ?>
  19. </div>
  20. </div>
  21. <div class="form-group">
  22. <?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
  23. </div>
  24. </div>