qianfan-case-admin/src/views/system/menu/menu-list-table-columns.js
zoujiandong 3265d590bd 1111
2025-07-07 17:53:11 +08:00

84 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 菜单表格列
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-05-12 19:46:11
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
import { ref } from 'vue';
export const columns = ref([
{
title: '名称',
dataIndex: 'menuName',
key: 'ID',
width: 200,
},
{
title: '类型',
dataIndex: 'menuType',
width: 80,
},
{
title: '图标',
dataIndex: 'icon',
width: 50,
},
{
title: '路径',
dataIndex: 'path',
ellipsis: true,
},
{
title: '组件',
dataIndex: 'component',
ellipsis: true,
},
{
title: '权限模式',
dataIndex: 'permsType',
width: 100,
},
{
title: '后端权限',
dataIndex: 'apiPerms',
ellipsis: true,
},
{
title: '前端权限',
dataIndex: 'webPerms',
ellipsis: true,
},
{
title: '外链',
dataIndex: 'frameFlag',
width: 45,
},
{
title: '缓存',
dataIndex: 'cacheFlag',
width: 45,
},
{
title: '显示',
dataIndex: 'visibleFlag',
width: 45,
},
{
title: '禁用',
dataIndex: 'disabledFlag',
width: 45,
},
{
title: '顺序',
dataIndex: 'sort',
width: 80,
},
{
title: '操作',
dataIndex: 'operate',
width: 100,
},
]);