🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>[danger] 友情提示:构建器目前只支持HisiPHP Pro版本([我要升级](https://www.hisiphp.com/authorize.html)) ## 文本(txt) | 参数 | 类型 | 必须 | 默认 | 说明 | --- | --- | --- | --- | --- | | type | string | Y | | 固定值:txt | | title | string | Y | | 标题 | | value | string | Y | | 文本内容 | | color | string | N | | 文本内容颜色 | >[info]![](https://img.kancloud.cn/be/52/be52e4c1f1a2edd9084ddbe49969a854_1094x96.png) >[]示例代码: ``` $assign['buildForm']['items'] = [ [ 'type' => 'txt', 'title' => '文本示例', 'value' => '我是纯文本演示内容', 'color' => '#f00', ], // 更多表单项..... ]; $this->assign($assign); ```