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