mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 17:21:53 +08:00
perf: 显示icon
This commit is contained in:
parent
8cfc0736fa
commit
cd4b9e9771
@ -14,6 +14,10 @@
|
|||||||
<XButton title="展开所有" @click="xGrid?.setAllTreeExpand(true)" />
|
<XButton title="展开所有" @click="xGrid?.setAllTreeExpand(true)" />
|
||||||
<XButton title="关闭所有" @click="xGrid?.clearTreeExpand()" />
|
<XButton title="关闭所有" @click="xGrid?.clearTreeExpand()" />
|
||||||
</template>
|
</template>
|
||||||
|
<template #name_default="{ row }">
|
||||||
|
<Icon :icon="row.icon" />
|
||||||
|
<span class="ml-3">{{ row.name }}</span>
|
||||||
|
</template>
|
||||||
<template #actionbtns_default="{ row }">
|
<template #actionbtns_default="{ row }">
|
||||||
<!-- 操作:修改 -->
|
<!-- 操作:修改 -->
|
||||||
<XTextButton
|
<XTextButton
|
||||||
|
@ -31,7 +31,10 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|||||||
table: {
|
table: {
|
||||||
treeNode: true,
|
treeNode: true,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: '200px'
|
width: '200px',
|
||||||
|
slots: {
|
||||||
|
default: 'name_default'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user