Commit 20a82cd2 authored by 张伯涛's avatar 张伯涛

菜单管理字段修改

parent 83e01122
...@@ -185,14 +185,14 @@ export const formSchema: FormSchema[] = [ ...@@ -185,14 +185,14 @@ export const formSchema: FormSchema[] = [
}, },
{ {
field: 'show', field: 'visible',
label: '是否显示', label: '显示状态',
component: 'RadioButtonGroup', component: 'RadioButtonGroup',
defaultValue: '0', defaultValue: '0',
componentProps: { componentProps: {
options: [ options: [
{ label: '', value: '0' }, { label: '显示', value: '0' },
{ label: '', value: '1' }, { label: '隐藏', value: '1' },
], ],
}, },
ifShow: ({ values }) => !isButton(values.type), ifShow: ({ values }) => !isButton(values.type),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment