mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-12 05:33:48 +08:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
/*
|
||
* 所有常量入口
|
||
*
|
||
* @Author: 1024创新实验室-主任:卓大
|
||
* @Date: 2022-09-06 19:58:28
|
||
* @Wechat: zhuda1024
|
||
* @Email: lab1024@163.com
|
||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
*/
|
||
import menu from './system/menu-const';
|
||
import goods from './business/erp/goods-const';
|
||
import category from './business/erp/category-const';
|
||
import { LOGIN_DEVICE_ENUM } from './system/login-device-const';
|
||
import { FLAG_NUMBER_ENUM, GENDER_ENUM, USER_TYPE_ENUM } from './common-const';
|
||
import { LAYOUT_ENUM } from './layout-const';
|
||
import file from './support/file-const';
|
||
import notice from './business/oa/notice-const';
|
||
import loginLog from './support/login-log-const';
|
||
import enterprise from './business/oa/enterprise-const';
|
||
import message from './business/message/message-const';
|
||
import codeGeneratorConst from './support/code-generator-const';
|
||
import changeLogConst from './support/change-log-const';
|
||
import jobConst from './support/job-const';
|
||
|
||
export default {
|
||
FLAG_NUMBER_ENUM,
|
||
LOGIN_DEVICE_ENUM,
|
||
GENDER_ENUM,
|
||
USER_TYPE_ENUM,
|
||
LAYOUT_ENUM,
|
||
...loginLog,
|
||
...menu,
|
||
...goods,
|
||
...category,
|
||
...file,
|
||
...notice,
|
||
...enterprise,
|
||
...message,
|
||
...codeGeneratorConst,
|
||
...changeLogConst,
|
||
...jobConst,
|
||
};
|