配置说明:

参数 类型 必须 默认 说明
type string Y 固定值:ueditor
grid Array N [12, 12, 12, 12] 栅格布局
name string Y 字段名称
title string Y 标题
value string/int N 定义默认值
attrs array N 编辑器配置,详见ueditor官方文档

示例代码:

  1. public function demo()
  2. {
  3. $assign['buildForm']['items'] = [
  4. [
  5. 'type' => 'ueditor',
  6. 'title' => '百度编辑器',
  7. 'name' => 'content',
  8. 'attrs' => [
  9. 'initialFrameHeight' => 300,
  10. 'initialFrameWidth' => '80%',
  11. ],
  12. ],
  13. // 更多表单项.....
  14. ];
  15. return $this->assign($assign)->fetch();
  16. }

渲染效果:

image.png