Files
smart-admin/smart-admin-web/javascript-ant-design-vue3/src/constants/layout-const.js

35 lines
603 B
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-09-06 19:58:41
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
export const LAYOUT_ENUM = {
SIDE: {
value: 'side',
desc: '传统',
},
SIDE_EXPAND: {
value: 'side-expand',
desc: '展开',
},
TOP: {
value: 'top',
desc: '顶部',
},
};
export const PAGE_TAG_ENUM = {
DEFAULT: {
value: 'default',
desc: '默认',
},
ANTD: {
value: 'antd',
desc: 'Ant Design',
},
};