Industrial-image-management.../src/views/system/menu/index.vue

185 lines
6.0 KiB
Vue
Raw Normal View History

2025-06-27 19:54:42 +08:00
<template>
<GiPageLayout>
<GiTable
ref="tableRef"
row-key="id"
:data="dataList"
:columns="columns"
:loading="loading"
:scroll="{ x: '100%', y: '100%', minWidth: 1700 }"
:pagination="false"
:disabled-column-keys="['title']"
@refresh="search"
>
<template #expand-icon="{ expanded }">
<IconDown v-if="expanded" />
<IconRight v-else />
</template>
<template #toolbar-left>
<a-input v-model="queryForm.menuName" placeholder="搜索菜单名称" allow-clear @change="handleSearch">
<template #prefix><icon-search /></template>
</a-input>
<a-button @click="reset">
<template #icon><icon-refresh /></template>
<template #default>重置</template>
</a-button>
</template>
<template #toolbar-right>
<a-button v-permission="['system:menu:create']" type="primary" @click="onAdd()">
<template #icon><icon-plus /></template>
<template #default>新增</template>
</a-button>
<a-button v-permission="['system:menu:clearCache']" type="outline" status="warning" @click="onClearCache">
<template #icon><icon-delete /></template>
<template #default>清除缓存</template>
</a-button>
<a-button @click="onExpanded">
<template #icon>
<icon-list v-if="isExpanded" />
<icon-mind-mapping v-else />
</template>
<template #default>
<span v-if="!isExpanded">展开</span>
<span v-else>折叠</span>
</template>
</a-button>
</template>
<template #title="{ record }">
<GiSvgIcon :name="record.icon" :size="15" />
<span style="margin-left: 5px; vertical-align: middle">{{ record.title }}</span>
</template>
<template #type="{ record }">
<a-tag v-if="record.type === 1" color="arcoblue">目录</a-tag>
<a-tag v-if="record.type === 2" color="green">菜单</a-tag>
<a-tag v-if="record.type === 3">按钮</a-tag>
</template>
<template #status="{ record }">
<GiCellStatus :status="record.status" />
</template>
<template #isExternal="{ record }">
<a-tag v-if="record.isExternal" color="arcoblue" size="small"></a-tag>
<a-tag v-else color="red" size="small"></a-tag>
</template>
<template #isHidden="{ record }">
<a-tag v-if="record.isHidden" color="arcoblue" size="small"></a-tag>
<a-tag v-else color="red" size="small"></a-tag>
</template>
<template #isCache="{ record }">
<a-tag v-if="record.isCache" color="arcoblue" size="small"></a-tag>
<a-tag v-else color="red" size="small"></a-tag>
</template>
<template #action="{ record }">
<a-space>
<a-link v-permission="['system:menu:update']" title="修改" @click="onUpdate(record)">修改</a-link>
<a-link v-permission="['system:menu:delete']" status="danger" title="删除" @click="onDelete(record)">删除</a-link>
<a-link
v-permission="['system:menu:create']"
:disabled="![1, 2].includes(record.type)"
:title="![1, 2].includes(record.type) ? '不可添加下级菜单' : '新增'"
@click="onAdd(record.id)"
>
新增
</a-link>
</a-space>
</template>
</GiTable>
<MenuAddModal ref="MenuAddModalRef" @save-success="search" />
</GiPageLayout>
</template>
<script setup lang="ts">
import type { TableInstance } from '@arco-design/web-vue'
import { Message, Modal } from '@arco-design/web-vue'
import MenuAddModal from './MenuAddModal.vue'
import { type MenuTreeQuery, type MenuResp, clearMenuCache, deleteMenu, getMenuTree } from '@/apis/system/menu'
import type GiTable from '@/components/GiTable/index.vue'
import { useTable } from '@/hooks'
import { isMobile } from '@/utils'
import has from '@/utils/has'
defineOptions({ name: 'SystemMenu' })
const queryForm = reactive<MenuTreeQuery>({})
const {
tableData,
loading,
search,
handleDelete,
} = useTable(() => getMenuTree(queryForm), { immediate: true })
const dataList = computed(() => tableData.value)
const columns: TableInstance['columns'] = [
{ title: '菜单标题', dataIndex: 'menuName', slotName: 'menuName', width: 170, fixed: !isMobile() ? 'left' : undefined },
{ title: '类型', dataIndex: 'menuType', slotName: 'menuType', align: 'center' },
{ title: '状态', dataIndex: 'visible', slotName: 'visible', align: 'center' },
{ title: '排序', dataIndex: 'orderNum', align: 'orderNum', show: false },
{
title: '操作',
dataIndex: 'action',
slotName: 'action',
width: 160,
align: 'center',
fixed: !isMobile() ? 'right' : undefined,
show: has.hasPermOr(['system:menu:update', 'system:menu:delete', 'system:menu:create']),
},
]
// 处理搜索
const handleSearch = () => {
search()
}
// 重置
const reset = () => {
queryForm.menuName = ''
queryForm.terminalType = ''
search()
}
// 删除
const onDelete = (record: MenuResp) => {
return handleDelete(() => deleteMenu(record.menuId), {
content: `是否确定菜单「${record.title}」?`,
showModal: true,
})
}
// 清除缓存
const onClearCache = () => {
Modal.warning({
title: '提示',
content: `是否确定清除全部菜单缓存?`,
hideCancel: false,
maskClosable: false,
onOk: async () => {
await clearMenuCache()
Message.success('清除成功')
},
})
}
const isExpanded = ref(false)
const tableRef = ref<InstanceType<typeof GiTable>>()
// 展开/折叠
const onExpanded = () => {
isExpanded.value = !isExpanded.value
tableRef.value?.tableRef?.expandAll(isExpanded.value)
}
const MenuAddModalRef = ref<InstanceType<typeof MenuAddModal>>()
// 新增
const onAdd = (parentId?: string) => {
MenuAddModalRef.value?.onAdd(parentId)
}
// 修改
const onUpdate = (record: MenuResp) => {
MenuAddModalRef.value?.onUpdate(record.menuId)
}
</script>
<style scoped lang="scss"></style>