fix: bug#18850
This commit is contained in:
parent
3afcac7c71
commit
c8717c6f0c
|
@ -55,7 +55,7 @@
|
||||||
type="link"
|
type="link"
|
||||||
:hasPermission="`${permission}:add`"
|
:hasPermission="`${permission}:add`"
|
||||||
:tooltip="{ title: slotProps.level >= 3 ? '仅支持3级菜单' : '新增子菜单' }"
|
:tooltip="{ title: slotProps.level >= 3 ? '仅支持3级菜单' : '新增子菜单' }"
|
||||||
:disabled="slotProps.level >= 3"
|
:disabled="slotProps.level >= 3 || slotProps?.options?.LowCode"
|
||||||
@click="table.addChildren(slotProps)"
|
@click="table.addChildren(slotProps)"
|
||||||
>
|
>
|
||||||
<AIcon type="PlusCircleOutlined" />
|
<AIcon type="PlusCircleOutlined" />
|
||||||
|
@ -195,6 +195,19 @@ const table = reactive({
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
terms:[
|
||||||
|
{
|
||||||
|
terms:[
|
||||||
|
{
|
||||||
|
value:"%show\":true%",
|
||||||
|
termType:"like",
|
||||||
|
column:"options"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
const params = {
|
const params = {
|
||||||
|
|
Loading…
Reference in New Issue