-
Notifications
You must be signed in to change notification settings - Fork 0
JTreeDict
xinwu-yang edited this page Mar 1, 2023
·
1 revision
分类字典树形下拉组件。
<template>
<div>
<j-tree-dict field="code" :async="false" v-model="editorValue" />
{{ editorValue }}
</div>
</template>
<script>
export default {
data() {
return {
form: this.$form.createForm(this),
editorValue: ''
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | 值 | string | ||
placeholder | 默认文字 | string | ||
disabled | 是否禁用 | boolean | ||
parentCode | 指定一个节点的编码,加载该节点下的所有字典数据,若不指定,默认加载所有数据 | string | ||
field | 指定当前组件需要存储的字段 | 'id' | 'code' | 'id' | |
async | 是否异步加载,对于数据量大的字典数据,建议设置成 true | boolean | false |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 值变化时调用 | function(value) |