mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2025-02-17 09:40:34 +08:00
feat: vxe tree table
This commit is contained in:
parent
eb5870f35e
commit
1c1cafdc7f
@ -3,12 +3,27 @@ import * as MenuApi from '@/api/system/menu'
|
|||||||
import { MenuVO } from '@/api/system/menu/types'
|
import { MenuVO } from '@/api/system/menu/types'
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
import { useMessage } from '@/hooks/web/useMessage'
|
import { useMessage } from '@/hooks/web/useMessage'
|
||||||
|
import { IconSelect } from '@/components/Icon'
|
||||||
|
import { Tooltip } from '@/components/Tooltip'
|
||||||
import { required } from '@/utils/formRules.js'
|
import { required } from '@/utils/formRules.js'
|
||||||
import { onMounted, reactive, ref } from 'vue'
|
import { onMounted, reactive, ref } from 'vue'
|
||||||
import { VxeTableInstance } from 'vxe-table'
|
import { VxeTableInstance } from 'vxe-table'
|
||||||
import { DICT_TYPE } from '@/utils/dict'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
import { SystemMenuTypeEnum, CommonStatusEnum } from '@/utils/constants'
|
import { SystemMenuTypeEnum, CommonStatusEnum } from '@/utils/constants'
|
||||||
|
import {
|
||||||
|
ElRow,
|
||||||
|
ElCol,
|
||||||
|
ElForm,
|
||||||
|
ElFormItem,
|
||||||
|
ElInput,
|
||||||
|
ElInputNumber,
|
||||||
|
ElSelect,
|
||||||
|
ElTreeSelect,
|
||||||
|
ElOption,
|
||||||
|
ElRadioGroup,
|
||||||
|
ElRadioButton
|
||||||
|
} from 'element-plus'
|
||||||
|
import { handleTree } from '@/utils/tree'
|
||||||
const { t } = useI18n() // 国际化
|
const { t } = useI18n() // 国际化
|
||||||
const message = useMessage()
|
const message = useMessage()
|
||||||
const xTable = ref<VxeTableInstance>()
|
const xTable = ref<VxeTableInstance>()
|
||||||
@ -18,6 +33,7 @@ const actionLoading = ref(false) // 遮罩层
|
|||||||
const actionType = ref('') // 操作按钮的类型
|
const actionType = ref('') // 操作按钮的类型
|
||||||
const dialogVisible = ref(false) // 是否显示弹出层
|
const dialogVisible = ref(false) // 是否显示弹出层
|
||||||
const dialogTitle = ref('edit') // 弹出层标题
|
const dialogTitle = ref('edit') // 弹出层标题
|
||||||
|
const statusOption = ref() // 状态选项
|
||||||
const menuForm = ref<MenuVO>({
|
const menuForm = ref<MenuVO>({
|
||||||
id: 0,
|
id: 0,
|
||||||
name: '',
|
name: '',
|
||||||
@ -33,12 +49,32 @@ const menuForm = ref<MenuVO>({
|
|||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
createTime: ''
|
createTime: ''
|
||||||
})
|
})
|
||||||
|
const menuProps = {
|
||||||
|
checkStrictly: true,
|
||||||
|
children: 'children',
|
||||||
|
label: 'name',
|
||||||
|
value: 'id'
|
||||||
|
}
|
||||||
|
interface Tree {
|
||||||
|
id: number
|
||||||
|
name: string
|
||||||
|
children?: Tree[] | any[]
|
||||||
|
}
|
||||||
|
const menuOptions = ref<any[]>([]) // 树形结构
|
||||||
|
const getTree = async () => {
|
||||||
|
menuOptions.value = []
|
||||||
|
const res = await MenuApi.listSimpleMenusApi()
|
||||||
|
let menu: Tree = { id: 0, name: '主类目', children: [] }
|
||||||
|
menu.children = handleTree(res)
|
||||||
|
menuOptions.value.push(menu)
|
||||||
|
}
|
||||||
// ========== 查询 ==========
|
// ========== 查询 ==========
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
name: undefined,
|
name: null,
|
||||||
status: undefined
|
status: null
|
||||||
})
|
})
|
||||||
const getList = async () => {
|
const getList = async () => {
|
||||||
|
statusOption.value = getIntDictOptions(DICT_TYPE.COMMON_STATUS)
|
||||||
tableLoading.value = true
|
tableLoading.value = true
|
||||||
const res = await MenuApi.getMenuListApi(queryParams)
|
const res = await MenuApi.getMenuListApi(queryParams)
|
||||||
tableData.value = res
|
tableData.value = res
|
||||||
@ -50,6 +86,10 @@ const setDialogTile = (type: string) => {
|
|||||||
actionType.value = type
|
actionType.value = type
|
||||||
dialogVisible.value = true
|
dialogVisible.value = true
|
||||||
}
|
}
|
||||||
|
// 新建操作
|
||||||
|
const handleCreate = () => {
|
||||||
|
setDialogTile('create')
|
||||||
|
}
|
||||||
// 修改操作
|
// 修改操作
|
||||||
const handleUpdate = async (row: MenuVO) => {
|
const handleUpdate = async (row: MenuVO) => {
|
||||||
// 设置数据
|
// 设置数据
|
||||||
@ -73,6 +113,16 @@ const rules = reactive({
|
|||||||
path: [required],
|
path: [required],
|
||||||
status: [required]
|
status: [required]
|
||||||
})
|
})
|
||||||
|
// 查询操作
|
||||||
|
const handleQuery = async () => {
|
||||||
|
await getList()
|
||||||
|
}
|
||||||
|
// 重置操作
|
||||||
|
const resetQuery = async () => {
|
||||||
|
queryParams.name = null
|
||||||
|
queryParams.status = null
|
||||||
|
await getList()
|
||||||
|
}
|
||||||
// 保存操作
|
// 保存操作
|
||||||
const isExternal = (path: string) => {
|
const isExternal = (path: string) => {
|
||||||
return /^(https?:|mailto:|tel:)/.test(path)
|
return /^(https?:|mailto:|tel:)/.test(path)
|
||||||
@ -111,12 +161,41 @@ const submitForm = async () => {
|
|||||||
}
|
}
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await getList()
|
await getList()
|
||||||
|
getTree()
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
|
<el-form :model="queryParams" ref="queryForm" :inline="true">
|
||||||
|
<el-form-item label="菜单名称" prop="name">
|
||||||
|
<el-input v-model="queryParams.name" placeholder="请输入菜单名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-select v-model="queryParams.status" placeholder="请选择菜单状态">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" @click="handleQuery">
|
||||||
|
<Icon icon="ep:search" class="mr-5px" />
|
||||||
|
{{ t('common.query') }}
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="resetQuery">
|
||||||
|
<Icon icon="ep:refresh-right" class="mr-5px" />
|
||||||
|
{{ t('common.reset') }}
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
<vxe-toolbar>
|
<vxe-toolbar>
|
||||||
<template #buttons>
|
<template #buttons>
|
||||||
|
<vxe-button status="primary" v-hasPermi="['system:post:create']" @click="handleCreate">
|
||||||
|
<Icon icon="ep:zoom-in" class="mr-5px" /> {{ t('action.add') }}
|
||||||
|
</vxe-button>
|
||||||
<vxe-button @click="xTable?.setAllTreeExpand(true)">展开所有</vxe-button>
|
<vxe-button @click="xTable?.setAllTreeExpand(true)">展开所有</vxe-button>
|
||||||
<vxe-button @click="xTable?.clearTreeExpand()">关闭所有</vxe-button>
|
<vxe-button @click="xTable?.clearTreeExpand()">关闭所有</vxe-button>
|
||||||
</template>
|
</template>
|
||||||
@ -181,31 +260,160 @@ onMounted(async () => {
|
|||||||
id="menuModel"
|
id="menuModel"
|
||||||
:title="dialogTitle"
|
:title="dialogTitle"
|
||||||
width="800"
|
width="800"
|
||||||
height="400"
|
height="6f00"
|
||||||
min-width="460"
|
min-width="460"
|
||||||
min-height="320"
|
min-height="320"
|
||||||
show-zoom
|
show-zoom
|
||||||
resize
|
resize
|
||||||
remember
|
|
||||||
storage
|
|
||||||
transfer
|
transfer
|
||||||
show-footer
|
show-footer
|
||||||
>
|
>
|
||||||
<template #default>
|
<template #default>
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<!-- 对话框(添加 / 修改) -->
|
||||||
<vxe-form
|
<el-form
|
||||||
ref="xForm"
|
:model="menuForm"
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
|
||||||
:data="menuForm"
|
|
||||||
:rules="rules"
|
:rules="rules"
|
||||||
@submit="submitForm"
|
:inline="true"
|
||||||
|
label-width="120px"
|
||||||
|
label-position="right"
|
||||||
>
|
>
|
||||||
<vxe-form-item title="菜单名称" field="name" :item-render="{}">
|
<el-row :gutter="24">
|
||||||
<template #default="{ data }">
|
<el-col :span="24">
|
||||||
<vxe-input v-model="data.name" placeholder="请输入菜单名称" clearable />
|
<el-form-item label="上级菜单">
|
||||||
|
<el-tree-select
|
||||||
|
node-key="id"
|
||||||
|
v-model="menuForm.parentId"
|
||||||
|
:props="menuProps"
|
||||||
|
:data="menuOptions"
|
||||||
|
check-strictly
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="菜单类型" prop="type">
|
||||||
|
<el-radio-group v-model="menuForm.type">
|
||||||
|
<el-radio-button
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_MENU_TYPE)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>
|
||||||
|
{{ dict.label }}
|
||||||
|
</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="菜单名称" prop="name">
|
||||||
|
<el-input v-model="menuForm.name" placeholder="请输入菜单名称" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<template v-if="menuForm.type !== 3">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="菜单图标">
|
||||||
|
<IconSelect v-model="menuForm.icon" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="路由地址" prop="path">
|
||||||
|
<template #label>
|
||||||
|
<Tooltip
|
||||||
|
titel="路由地址"
|
||||||
|
message="访问的路由地址,如:`user`。如需外网地址时,则以 `http(s)://` 开头"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<el-input v-model="menuForm.path" placeholder="请输入路由地址" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</template>
|
</template>
|
||||||
</vxe-form-item>
|
<template v-if="menuForm.type === 2">
|
||||||
</vxe-form>
|
<el-col :span="12">
|
||||||
|
<el-form-item label="路由地址" prop="component">
|
||||||
|
<el-input v-model="menuForm.component" placeholder="请输入组件地址" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</template>
|
||||||
|
<template v-if="menuForm.type !== 1">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="权限标识" prop="permission">
|
||||||
|
<template #label>
|
||||||
|
<Tooltip
|
||||||
|
titel="权限标识"
|
||||||
|
message="Controller 方法上的权限字符,如:@PreAuthorize(`@ss.hasPermission('system:user:list')`)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<el-input v-model="menuForm.permission" placeholder="请输入权限标识" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</template>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="显示排序" prop="sort">
|
||||||
|
<el-input-number
|
||||||
|
v-model="menuForm.sort"
|
||||||
|
controls-position="right"
|
||||||
|
:min="0"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="菜单状态" prop="status">
|
||||||
|
<el-radio-group v-model="menuForm.status">
|
||||||
|
<el-radio-button
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>
|
||||||
|
{{ dict.label }}
|
||||||
|
</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<template v-if="menuForm.type !== 3">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="显示状态" prop="status">
|
||||||
|
<template #label>
|
||||||
|
<Tooltip
|
||||||
|
titel="显示状态"
|
||||||
|
message="选择隐藏时,路由将不会出现在侧边栏,但仍然可以访问"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<el-radio-group v-model="menuForm.visible">
|
||||||
|
<el-radio-button key="true" :label="true">显示</el-radio-button>
|
||||||
|
<el-radio-button key="false" :label="false">隐藏</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</template>
|
||||||
|
<template v-if="menuForm.type === 2">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="缓存状态" prop="keepAlive">
|
||||||
|
<template #label>
|
||||||
|
<Tooltip
|
||||||
|
titel="缓存状态"
|
||||||
|
message="选择缓存时,则会被 `keep-alive` 缓存,需要匹配组件的 `name` 和路由地址保持一致"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<el-radio-group v-model="menuForm.keepAlive">
|
||||||
|
<el-radio-button key="true" :label="true">缓存</el-radio-button>
|
||||||
|
<el-radio-button key="false" :label="false">不缓存</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</template>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<template #footer>
|
||||||
|
<!-- 操作按钮 -->
|
||||||
|
<el-button
|
||||||
|
v-if="['create', 'update'].includes(actionType)"
|
||||||
|
type="primary"
|
||||||
|
:loading="actionLoading"
|
||||||
|
@click="submitForm"
|
||||||
|
>
|
||||||
|
{{ t('action.save') }}
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
|
||||||
</template>
|
</template>
|
||||||
</vxe-modal>
|
</vxe-modal>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,409 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import { ref, reactive, onMounted } from 'vue'
|
|
||||||
import { handleTree } from '@/utils/tree'
|
|
||||||
import dayjs from 'dayjs'
|
|
||||||
import { IconSelect } from '@/components/Icon'
|
|
||||||
import { Tooltip } from '@/components/Tooltip'
|
|
||||||
import * as MenuApi from '@/api/system/menu'
|
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
|
||||||
import {
|
|
||||||
ElRow,
|
|
||||||
ElCol,
|
|
||||||
ElTable,
|
|
||||||
ElTableColumn,
|
|
||||||
ElForm,
|
|
||||||
ElFormItem,
|
|
||||||
ElInput,
|
|
||||||
ElInputNumber,
|
|
||||||
ElSelect,
|
|
||||||
ElTreeSelect,
|
|
||||||
ElOption,
|
|
||||||
ElRadioGroup,
|
|
||||||
ElRadioButton
|
|
||||||
} from 'element-plus'
|
|
||||||
import { MenuVO } from '@/api/system/menu/types'
|
|
||||||
import { SystemMenuTypeEnum, CommonStatusEnum } from '@/utils/constants'
|
|
||||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
||||||
import { useMessage } from '@/hooks/web/useMessage'
|
|
||||||
import { required } from '@/utils/formRules.js'
|
|
||||||
const message = useMessage()
|
|
||||||
const { t } = useI18n() // 国际化
|
|
||||||
// ========== 创建菜单树结构 ==========
|
|
||||||
const loading = ref(true)
|
|
||||||
const menuData = ref<any[]>([]) // 树形结构
|
|
||||||
const getList = async () => {
|
|
||||||
const res = await MenuApi.getMenuListApi(queryParams)
|
|
||||||
menuData.value = handleTree(res)
|
|
||||||
loading.value = false
|
|
||||||
}
|
|
||||||
const menuProps = {
|
|
||||||
checkStrictly: true,
|
|
||||||
children: 'children',
|
|
||||||
label: 'name',
|
|
||||||
value: 'id'
|
|
||||||
}
|
|
||||||
interface Tree {
|
|
||||||
id: number
|
|
||||||
name: string
|
|
||||||
children?: Tree[] | any[]
|
|
||||||
}
|
|
||||||
const menuOptions = ref<any[]>([]) // 树形结构
|
|
||||||
const getTree = async () => {
|
|
||||||
menuOptions.value = []
|
|
||||||
const res = await MenuApi.listSimpleMenusApi()
|
|
||||||
let menu: Tree = { id: 0, name: '主类目', children: [] }
|
|
||||||
menu.children = handleTree(res)
|
|
||||||
menuOptions.value.push(menu)
|
|
||||||
}
|
|
||||||
// ========== 查询 ==========
|
|
||||||
const queryParams = reactive({
|
|
||||||
name: undefined,
|
|
||||||
status: undefined
|
|
||||||
})
|
|
||||||
// 查询操作
|
|
||||||
const handleQuery = async () => {
|
|
||||||
await getList()
|
|
||||||
}
|
|
||||||
// 重置操作
|
|
||||||
const resetQuery = async () => {
|
|
||||||
queryParams.name = undefined
|
|
||||||
queryParams.status = undefined
|
|
||||||
await getList()
|
|
||||||
}
|
|
||||||
// ========== CRUD 相关 ==========
|
|
||||||
const actionLoading = ref(false) // 遮罩层
|
|
||||||
const actionType = ref('') // 操作按钮的类型
|
|
||||||
const dialogVisible = ref(false) // 是否显示弹出层
|
|
||||||
const dialogTitle = ref('edit') // 弹出层标题
|
|
||||||
const menuForm = ref<MenuVO>({
|
|
||||||
id: 0,
|
|
||||||
name: '',
|
|
||||||
permission: '',
|
|
||||||
type: SystemMenuTypeEnum.DIR,
|
|
||||||
sort: 1,
|
|
||||||
parentId: 0,
|
|
||||||
path: '',
|
|
||||||
icon: '',
|
|
||||||
component: '',
|
|
||||||
status: CommonStatusEnum.ENABLE,
|
|
||||||
visible: true,
|
|
||||||
keepAlive: true,
|
|
||||||
createTime: ''
|
|
||||||
})
|
|
||||||
// 表单校验
|
|
||||||
const rules = reactive({
|
|
||||||
name: [required],
|
|
||||||
sort: [required],
|
|
||||||
path: [required],
|
|
||||||
status: [required]
|
|
||||||
})
|
|
||||||
// 设置标题
|
|
||||||
const setDialogTile = (type: string) => {
|
|
||||||
dialogTitle.value = t('action.' + type)
|
|
||||||
actionType.value = type
|
|
||||||
dialogVisible.value = true
|
|
||||||
}
|
|
||||||
// 新建操作
|
|
||||||
const handleCreate = () => {
|
|
||||||
// 重置表单
|
|
||||||
setDialogTile('create')
|
|
||||||
}
|
|
||||||
// 修改操作
|
|
||||||
const handleUpdate = async (row: MenuVO) => {
|
|
||||||
// 设置数据
|
|
||||||
const res = await MenuApi.getMenuApi(row.id)
|
|
||||||
menuForm.value = res
|
|
||||||
setDialogTile('update')
|
|
||||||
}
|
|
||||||
// 删除操作
|
|
||||||
const handleDelete = async (row: MenuVO) => {
|
|
||||||
message
|
|
||||||
.confirm(t('common.delDataMessage'), t('common.confirmTitle'))
|
|
||||||
.then(async () => {
|
|
||||||
await MenuApi.deleteMenuApi(row.id)
|
|
||||||
message.success(t('common.delSuccess'))
|
|
||||||
})
|
|
||||||
.catch(() => {})
|
|
||||||
await getList()
|
|
||||||
}
|
|
||||||
// 保存操作
|
|
||||||
const isExternal = (path: string) => {
|
|
||||||
return /^(https?:|mailto:|tel:)/.test(path)
|
|
||||||
}
|
|
||||||
const submitForm = async () => {
|
|
||||||
actionLoading.value = true
|
|
||||||
// 提交请求
|
|
||||||
try {
|
|
||||||
if (
|
|
||||||
menuForm.value.type === SystemMenuTypeEnum.DIR ||
|
|
||||||
menuForm.value.type === SystemMenuTypeEnum.MENU
|
|
||||||
) {
|
|
||||||
if (!isExternal(menuForm.value.path)) {
|
|
||||||
if (menuForm.value.parentId === 0 && menuForm.value.path.charAt(0) !== '/') {
|
|
||||||
message.error('路径必须以 / 开头')
|
|
||||||
return
|
|
||||||
} else if (menuForm.value.parentId !== 0 && menuForm.value.path.charAt(0) === '/') {
|
|
||||||
message.error('路径不能以 / 开头')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (actionType.value === 'create') {
|
|
||||||
await MenuApi.createMenuApi(menuForm.value)
|
|
||||||
message.success(t('common.createSuccess'))
|
|
||||||
} else {
|
|
||||||
await MenuApi.updateMenuApi(menuForm.value)
|
|
||||||
message.success(t('common.updateSuccess'))
|
|
||||||
}
|
|
||||||
// 操作成功,重新加载列表
|
|
||||||
dialogVisible.value = false
|
|
||||||
await getList()
|
|
||||||
} finally {
|
|
||||||
actionLoading.value = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// ========== 初始化 ==========
|
|
||||||
onMounted(async () => {
|
|
||||||
await getList()
|
|
||||||
getTree()
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<!-- 搜索工作区 -->
|
|
||||||
<ContentWrap>
|
|
||||||
<el-form :model="queryParams" ref="queryForm" :inline="true">
|
|
||||||
<el-form-item label="菜单名称" prop="name">
|
|
||||||
<el-input v-model="queryParams.name" placeholder="请输入菜单名称" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="状态" prop="status">
|
|
||||||
<el-select v-model="queryParams.status" placeholder="请选择菜单状态">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.label"
|
|
||||||
:value="dict.value"
|
|
||||||
/>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item>
|
|
||||||
<el-button type="primary" @click="handleQuery">
|
|
||||||
<Icon icon="ep:search" class="mr-5px" />
|
|
||||||
{{ t('common.query') }}
|
|
||||||
</el-button>
|
|
||||||
<el-button @click="resetQuery">
|
|
||||||
<Icon icon="ep:refresh-right" class="mr-5px" />
|
|
||||||
{{ t('common.reset') }}
|
|
||||||
</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
</ContentWrap>
|
|
||||||
<!-- 列表 -->
|
|
||||||
<ContentWrap>
|
|
||||||
<div class="mb-10px">
|
|
||||||
<el-button type="primary" v-hasPermi="['system:notice:create']" @click="handleCreate">
|
|
||||||
<Icon icon="ep:zoom-in" class="mr-1px" /> {{ t('action.add') }}
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
v-loading="loading"
|
|
||||||
table-layout="auto"
|
|
||||||
row-key="id"
|
|
||||||
:data="menuData"
|
|
||||||
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
||||||
>
|
|
||||||
<el-table-column label="菜单名称" prop="name" width="240px">
|
|
||||||
<template #default="scope">
|
|
||||||
<Icon :icon="scope.row.icon" />
|
|
||||||
<span class="ml-3">{{ scope.row.name }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="菜单类型" prop="type">
|
|
||||||
<template #default="scope">
|
|
||||||
<DictTag :type="DICT_TYPE.SYSTEM_MENU_TYPE" :value="scope.row.type" />
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="路由地址" prop="path" />
|
|
||||||
<el-table-column label="组件路径" prop="component" />
|
|
||||||
<el-table-column label="权限标识" prop="permission" />
|
|
||||||
<el-table-column label="排序" prop="sort" />
|
|
||||||
<el-table-column label="状态" prop="status">
|
|
||||||
<template #default="scope">
|
|
||||||
<DictTag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="创建时间" prop="createTime">
|
|
||||||
<template #default="scope">
|
|
||||||
<span>{{ dayjs(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="操作">
|
|
||||||
<template #default="scope">
|
|
||||||
<el-button
|
|
||||||
link
|
|
||||||
type="primary"
|
|
||||||
v-hasPermi="['system:menu:update']"
|
|
||||||
@click="handleUpdate(scope.row)"
|
|
||||||
>
|
|
||||||
<Icon icon="ep:edit" class="mr-1px" /> {{ t('action.edit') }}
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
link
|
|
||||||
type="primary"
|
|
||||||
v-hasPermi="['system:menu:delete']"
|
|
||||||
@click="handleDelete(scope.row)"
|
|
||||||
>
|
|
||||||
<Icon icon="ep:delete" class="mr-1px" /> {{ t('action.del') }}
|
|
||||||
</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</ContentWrap>
|
|
||||||
<!-- 添加或修改菜单对话框 -->
|
|
||||||
<Dialog v-model="dialogVisible" :title="dialogTitle" maxHeight="400px" width="45%">
|
|
||||||
<el-form
|
|
||||||
:model="menuForm"
|
|
||||||
:rules="rules"
|
|
||||||
:inline="true"
|
|
||||||
label-width="120px"
|
|
||||||
label-position="right"
|
|
||||||
>
|
|
||||||
<el-row :gutter="24">
|
|
||||||
<el-col :span="24">
|
|
||||||
<el-form-item label="上级菜单">
|
|
||||||
<el-tree-select
|
|
||||||
node-key="id"
|
|
||||||
v-model="menuForm.parentId"
|
|
||||||
:props="menuProps"
|
|
||||||
:data="menuOptions"
|
|
||||||
check-strictly
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="菜单类型" prop="type">
|
|
||||||
<el-radio-group v-model="menuForm.type">
|
|
||||||
<el-radio-button
|
|
||||||
v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_MENU_TYPE)"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.value"
|
|
||||||
>
|
|
||||||
{{ dict.label }}
|
|
||||||
</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="菜单名称" prop="name">
|
|
||||||
<el-input v-model="menuForm.name" placeholder="请输入菜单名称" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<template v-if="menuForm.type !== 3">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="菜单图标">
|
|
||||||
<IconSelect v-model="menuForm.icon" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="路由地址" prop="path">
|
|
||||||
<template #label>
|
|
||||||
<Tooltip
|
|
||||||
titel="路由地址"
|
|
||||||
message="访问的路由地址,如:`user`。如需外网地址时,则以 `http(s)://` 开头"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<el-input v-model="menuForm.path" placeholder="请输入路由地址" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</template>
|
|
||||||
<template v-if="menuForm.type === 2">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="路由地址" prop="component">
|
|
||||||
<el-input v-model="menuForm.component" placeholder="请输入组件地址" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</template>
|
|
||||||
<template v-if="menuForm.type !== 1">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="权限标识" prop="permission">
|
|
||||||
<template #label>
|
|
||||||
<Tooltip
|
|
||||||
titel="权限标识"
|
|
||||||
message="Controller 方法上的权限字符,如:@PreAuthorize(`@ss.hasPermission('system:user:list')`)"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<el-input v-model="menuForm.permission" placeholder="请输入权限标识" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</template>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="显示排序" prop="sort">
|
|
||||||
<el-input-number v-model="menuForm.sort" controls-position="right" :min="0" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="菜单状态" prop="status">
|
|
||||||
<el-radio-group v-model="menuForm.status">
|
|
||||||
<el-radio-button
|
|
||||||
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.value"
|
|
||||||
>
|
|
||||||
{{ dict.label }}
|
|
||||||
</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<template v-if="menuForm.type !== 3">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="显示状态" prop="status">
|
|
||||||
<template #label>
|
|
||||||
<Tooltip
|
|
||||||
titel="显示状态"
|
|
||||||
message="选择隐藏时,路由将不会出现在侧边栏,但仍然可以访问"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<el-radio-group v-model="menuForm.visible">
|
|
||||||
<el-radio-button key="true" :label="true">显示</el-radio-button>
|
|
||||||
<el-radio-button key="false" :label="false">隐藏</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</template>
|
|
||||||
<template v-if="menuForm.type === 2">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="缓存状态" prop="keepAlive">
|
|
||||||
<template #label>
|
|
||||||
<Tooltip
|
|
||||||
titel="缓存状态"
|
|
||||||
message="选择缓存时,则会被 `keep-alive` 缓存,需要匹配组件的 `name` 和路由地址保持一致"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<el-radio-group v-model="menuForm.keepAlive">
|
|
||||||
<el-radio-button key="true" :label="true">缓存</el-radio-button>
|
|
||||||
<el-radio-button key="false" :label="false">不缓存</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</template>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
<!-- 操作按钮 -->
|
|
||||||
<template #footer>
|
|
||||||
<el-button
|
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
|
||||||
type="primary"
|
|
||||||
:loading="actionLoading"
|
|
||||||
@click="submitForm"
|
|
||||||
>
|
|
||||||
{{ t('action.save') }}
|
|
||||||
</el-button>
|
|
||||||
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
</template>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.el-button.is-text) {
|
|
||||||
margin-left: 0;
|
|
||||||
padding: 8px 10px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -131,8 +131,6 @@ const submitForm: VxeFormEvents.Submit = async () => {
|
|||||||
min-height="320"
|
min-height="320"
|
||||||
show-zoom
|
show-zoom
|
||||||
resize
|
resize
|
||||||
remember
|
|
||||||
storage
|
|
||||||
transfer
|
transfer
|
||||||
show-footer
|
show-footer
|
||||||
>
|
>
|
||||||
@ -144,7 +142,6 @@ const submitForm: VxeFormEvents.Submit = async () => {
|
|||||||
:data="formData"
|
:data="formData"
|
||||||
:items="formItems"
|
:items="formItems"
|
||||||
:rules="rules"
|
:rules="rules"
|
||||||
@submit="submitForm"
|
|
||||||
/>
|
/>
|
||||||
<Descriptions
|
<Descriptions
|
||||||
v-if="actionType === 'detail'"
|
v-if="actionType === 'detail'"
|
||||||
@ -159,5 +156,15 @@ const submitForm: VxeFormEvents.Submit = async () => {
|
|||||||
</template>
|
</template>
|
||||||
</Descriptions>
|
</Descriptions>
|
||||||
</template>
|
</template>
|
||||||
|
<template #footer>
|
||||||
|
<vxe-button
|
||||||
|
v-if="['create', 'update'].includes(actionType)"
|
||||||
|
status="primary"
|
||||||
|
@click="submitForm"
|
||||||
|
>
|
||||||
|
{{ t('action.save') }}
|
||||||
|
</vxe-button>
|
||||||
|
<vxe-button @click="dialogVisible = false">{{ t('dialog.close') }}</vxe-button>
|
||||||
|
</template>
|
||||||
</vxe-modal>
|
</vxe-modal>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
Reference in New Issue
Block a user