🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 方法 数字控件实例: ```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(); ```