| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- const selectRule = [
- { type: 'switch', field: 'multiple', title: '是否多选' },
- {
- type: 'switch',
- field: 'disabled',
- title: '是否禁用'
- },
- { type: 'switch', field: 'clearable', title: '是否可以清空选项' },
- {
- type: 'switch',
- field: 'collapseTags',
- title: '多选时是否将选中值按文字的形式展示'
- },
- {
- type: 'inputNumber',
- field: 'multipleLimit',
- title: '多选时用户最多可以选择的项目数,为 0 则不限制',
- props: { min: 0 }
- },
- {
- type: 'input',
- field: 'autocomplete',
- title: 'autocomplete 属性'
- },
- { type: 'input', field: 'placeholder', title: '占位符' },
- {
- type: 'switch',
- field: 'filterable',
- title: '是否可搜索'
- },
- { type: 'switch', field: 'allowCreate', title: '是否允许用户创建新条目' },
- {
- type: 'input',
- field: 'noMatchText',
- title: '搜索条件无匹配时显示的文字'
- },
- {
- type: 'switch',
- field: 'remote',
- title: '其中的选项是否从服务器远程加载'
- },
- {
- type: 'Struct',
- field: 'remoteMethod',
- title: '自定义远程搜索方法'
- },
- { type: 'input', field: 'noDataText', title: '选项为空时显示的文字' },
- {
- type: 'switch',
- field: 'reserveKeyword',
- title: '多选且可搜索时,是否在选中一个选项后保留当前的搜索关键词'
- },
- {
- type: 'switch',
- field: 'defaultFirstOption',
- title: '在输入框按下回车,选择第一个匹配项'
- },
- {
- type: 'switch',
- field: 'popperAppendToBody',
- title: '是否将弹出框插入至 body 元素',
- value: true
- },
- {
- type: 'switch',
- field: 'automaticDropdown',
- title: '对于不可搜索的 Select,是否在输入框获得焦点后自动弹出选项菜单'
- }
- ]
- export default selectRule
|