多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 方法 单选控件实例: ```php $radio = $dynamicControl->radio(); ``` 设置单元格最小宽度: ```php $instance->minWidth(100); ``` 设置单选选项: ```php $radio->options([ 'yes' => '是', 'no' => '否', ]); ``` 设置控件标签: ```php $radio->label('单选'); ``` 设置默认值: ```php $radio->defaultValue('yes'); ``` 设置为必填: ```php $radio->required(true); ``` 设置注释文本: ```php $radio->comment('这里是一个注释文本'); ``` 设置ui类: ```php $radio->uiClass(['f13']); ``` 设置style样式: ```php $radio->style(); ``` 设置html属性: ```php $radio->attribute(); ```