Constants

TYPE_SELECTED

TYPE_SELECTED = 'selected'

TYPE_CHECKED

TYPE_CHECKED = 'checked'

Properties

$field

$field : String

字段名

Type

String

$title

$title : String

字段昵称

Type

String

$name

$name : string

组件名称

Type

string

$props

$props : array

组件的规则

Type

array

$value

$value : 

字段的值

Type

$col

$col : array

栅格规则

Type

array

$validate

$validate : array

字段验证规则

Type

array

$propsRule

$propsRule : array

组件属性设置规则

Type

array

Methods

__construct()

__construct(String  $field, String  $title, String  $value = null) 

FormComponentDriver constructor.

Parameters

String $field

字段名

String $title

字段昵称

String $value

字段值

col()

col(  $span) : $this

Parameters

$span

Returns

$this

setProps()

setProps(array  $props = array()) : $this

批量设置组件的规则

Parameters

array $props

Returns

$this

getProps()

getProps(  $name) : mixed|null

获取组件的规则

Parameters

$name

Returns

mixed|null

value()

value(  $value) : $this

设置组件的值

Parameters

$value

Returns

$this

getValue()

getValue() : string

获取组件的值

Returns

string

getField()

getField() : String

获取组件的字段名

Returns

String

getTitle()

getTitle() : String

设置组件的昵称

Returns

String

required()

required(boolean  $required = true) : $this

Parameters

boolean $required

Returns

$this

validate()

validate(array  $validate) : $this

添加验证规则

Parameters

array $validate

Returns

$this

__call()

__call(  $name,   $arguments) : $this

设置组件属性

Parameters

$name
$arguments

Throws

\Exception

Returns

$this

data()

data(array  $treeData) : $this

Parameters

array $treeData

Returns

$this

jsData()

jsData(  $var) : $this

Parameters

$var

Returns

$this

build()

build() : array

Returns

array

()

() : 

$this type(String $type) 类型,可选值为 checked、selected

Returns

()

() : 

$this multiple(Boolean $bool) 是否支持多选,当type=selected并且multiple=false,默认为false,值为String或Number类型,其他情况为Array类型

Returns

()

() : 

$this showCheckbox(Boolean $bool) 是否显示多选框,默认为false

Returns

()

() : 

$this emptyText(String $emptyText) 没有数据时的提示,默认为'暂无数据'

Returns

init()

init() 

组件初始化

setRequired()

setRequired(null  $message = '',   $trigger = 'change',   $type = null) : $this

设置组件的值为必填

Parameters

null $message
$trigger
$type

Returns

$this