配置说明:

参数 类型 必须 默认 说明
type string Y 固定值:textarea
name string Y 字段名称
title string Y 标题
grid Array N [12, 12, 12, 12] 栅格布局
value string/int N 默认值
tips string N 提示说明
attrs array N 文本框自定义属性

示例代码:

  1. public function demo()
  2. {
  3. $assign['buildForm']['items'] = [
  4. [
  5. 'type' => 'textarea',
  6. 'title' => '项目简介',
  7. 'name' => 'textarea',
  8. 'attrs' => [
  9. 'placeholder' => '请输入简介,200个字符以内',
  10. ],
  11. ],
  12. // 更多表单项.....
  13. ];
  14. return $this->assign($assign)->fetch();
  15. }

渲染效果:

image.png