275 lines
5.6 KiB
Vue
275 lines
5.6 KiB
Vue
<script setup lang="tsx">
|
|
import { Form, FormSchema } from '@/components/Form'
|
|
import { useForm } from '@/hooks/web/useForm'
|
|
import { PropType, reactive, watch } from 'vue'
|
|
import { useValidator } from '@/hooks/web/useValidator'
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
import { getMenuListApi } from '@/api/menu'
|
|
import { ElTag, ElButton } from 'element-plus'
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { required } = useValidator()
|
|
|
|
const props = defineProps({
|
|
currentRow: {
|
|
type: Object as PropType<any>,
|
|
default: () => null
|
|
}
|
|
})
|
|
|
|
const formSchema = reactive<FormSchema[]>([
|
|
{
|
|
field: 'type',
|
|
label: '菜单类型',
|
|
component: 'RadioButton',
|
|
value: 0,
|
|
colProps: {
|
|
span: 24
|
|
},
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: '目录',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '菜单',
|
|
value: 1
|
|
}
|
|
],
|
|
on: {
|
|
change: async (val: number) => {
|
|
const formData = await getFormData()
|
|
if (val === 1) {
|
|
setSchema([
|
|
{
|
|
field: 'component',
|
|
path: 'componentProps.disabled',
|
|
value: false
|
|
}
|
|
])
|
|
setValues({
|
|
component: ''
|
|
})
|
|
} else {
|
|
setSchema([
|
|
{
|
|
field: 'component',
|
|
path: 'componentProps.disabled',
|
|
value: true
|
|
}
|
|
])
|
|
|
|
if (formData.parentId === void 0) {
|
|
setValues({
|
|
component: '#'
|
|
})
|
|
} else {
|
|
setValues({
|
|
component: '##'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'parentId',
|
|
label: '父级菜单',
|
|
component: 'TreeSelect',
|
|
componentProps: {
|
|
nodeKey: 'id',
|
|
props: {
|
|
label: 'title',
|
|
value: 'id',
|
|
children: 'children'
|
|
},
|
|
highlightCurrent: true,
|
|
expandOnClickNode: false,
|
|
checkStrictly: true,
|
|
checkOnClickNode: true,
|
|
clearable: true,
|
|
on: {
|
|
change: async (val: number) => {
|
|
const formData = await getFormData()
|
|
if (val && formData.type === 0) {
|
|
setValues({
|
|
component: '##'
|
|
})
|
|
} else if (!val && formData.type === 0) {
|
|
setValues({
|
|
component: '#'
|
|
})
|
|
} else if (formData.type === 1) {
|
|
setValues({
|
|
component: ''
|
|
})
|
|
}
|
|
}
|
|
}
|
|
},
|
|
optionApi: async () => {
|
|
const res = await getMenuListApi()
|
|
return res.data.list || []
|
|
}
|
|
},
|
|
{
|
|
field: 'meta.title',
|
|
label: t('menu.menuName'),
|
|
component: 'Input'
|
|
},
|
|
{
|
|
field: 'component',
|
|
label: '组件',
|
|
component: 'Input',
|
|
value: '#',
|
|
componentProps: {
|
|
disabled: true,
|
|
placeholder: '#为顶级目录,##为子目录'
|
|
}
|
|
},
|
|
{
|
|
field: 'name',
|
|
label: t('menu.name'),
|
|
component: 'Input'
|
|
},
|
|
{
|
|
field: 'meta.icon',
|
|
label: t('menu.icon'),
|
|
component: 'Input'
|
|
},
|
|
{
|
|
field: 'path',
|
|
label: t('menu.path'),
|
|
component: 'Input'
|
|
},
|
|
{
|
|
field: 'meta.activeMenu',
|
|
label: t('menu.activeMenu'),
|
|
component: 'Input'
|
|
},
|
|
{
|
|
field: 'status',
|
|
label: t('menu.status'),
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: t('userDemo.disable'),
|
|
value: 0
|
|
},
|
|
{
|
|
label: t('userDemo.enable'),
|
|
value: 1
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
field: 'permissionList',
|
|
label: t('menu.permission'),
|
|
component: 'CheckboxGroup',
|
|
colProps: {
|
|
span: 24
|
|
},
|
|
formItemProps: {
|
|
slots: {
|
|
default: () => (
|
|
<>
|
|
<ElTag class="mx-1" closable disableTransitions={false}>
|
|
新增
|
|
</ElTag>
|
|
<ElTag class="mx-1" closable disableTransitions={false}>
|
|
编辑
|
|
</ElTag>
|
|
<ElTag class="mx-1" closable disableTransitions={false}>
|
|
删除
|
|
</ElTag>
|
|
<ElButton type="primary" size="small" onClick={() => console.log('添加权限')}>
|
|
添加权限
|
|
</ElButton>
|
|
</>
|
|
)
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'meta.hidden',
|
|
label: t('menu.hidden'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.alwaysShow',
|
|
label: t('menu.alwaysShow'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.noCache',
|
|
label: t('menu.noCache'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.breadcrumb',
|
|
label: t('menu.breadcrumb'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.affix',
|
|
label: t('menu.affix'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.noTagsView',
|
|
label: t('menu.noTagsView'),
|
|
component: 'Switch'
|
|
},
|
|
{
|
|
field: 'meta.canTo',
|
|
label: t('menu.canTo'),
|
|
component: 'Switch'
|
|
}
|
|
])
|
|
|
|
const rules = reactive({
|
|
component: [required()],
|
|
path: [required()],
|
|
'meta.title': [required()]
|
|
})
|
|
|
|
const { formRegister, formMethods } = useForm()
|
|
const { setValues, getFormData, getElFormExpose, setSchema } = formMethods
|
|
|
|
const submit = async () => {
|
|
const elForm = await getElFormExpose()
|
|
const valid = await elForm?.validate().catch((err) => {
|
|
console.log(err)
|
|
})
|
|
if (valid) {
|
|
const formData = await getFormData()
|
|
return formData
|
|
}
|
|
}
|
|
|
|
watch(
|
|
() => props.currentRow,
|
|
(currentRow) => {
|
|
if (!currentRow) return
|
|
setValues(currentRow)
|
|
},
|
|
{
|
|
deep: true,
|
|
immediate: true
|
|
}
|
|
)
|
|
|
|
defineExpose({
|
|
submit
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Form :rules="rules" @register="formRegister" :schema="formSchema" />
|
|
</template>
|