🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 方法 滑块控件实例: ```php $range = $dynamicControl->range(); ``` 设置单元格最小宽度: ```php $instance->minWidth(100); ``` 设置最小值 (int):`默认 0` ```php $range->min(1); ``` 设置最大值 (int):`默认 100` ```php $range->max(50); ``` 设置步数 (int):`默认 1` ```php $range->step(2); ``` 设置控件标签: ```php $range->label('单选'); ``` 设置默认值: ```php $range->defaultValue('yes'); ``` 设置为必填: ```php $range->required(true); ``` 设置注释文本: ```php $range->comment('这里是一个注释文本'); ``` 设置ui类: ```php $range->uiClass(['f13']); ``` 设置style样式: ```php $range->style(); ``` 设置html属性: ```php $range->attribute(); ```