🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
* text文本框 * 单列案例 ~~~ $input[] = ['type'=>'text','name'=>'标题','field'=>'title','note'=>'请输入文章标题']; $input[] = ['type'=>'text','name'=>'标题','field'=>'title','limit'=>[1],'note'=>'请输入文章标题','val'=>'']; ~~~ * 多列案例 ~~~ $input[] = ['type'=>'text','name'=>'标题','field'=>'title','width'=>[40,60],'note'=>['提示1','提示2']]; $input[] = ['type'=>'text','name'=>'标题','field'=>'title','width'=>[40,60],'note'=>['提示1','提示2'],'val'=>['1','2']]; ~~~ | 参名 | | 说明 | | --- | --- |--- | | type | 必选 | 表单类型 | | name | 必选 | 表单显示名称 | | field | 必选 | 字段名 | | width | 必填 | 列宽比值数组 | | note | 选填 | 占位符数组 | | yushe | 选填 | 预设值数组 | | val | 选填 | 字段值 | > 表单限制 ( 查看"input表单类型" )