YouChain_WMS_Web/nc_wms_web/src/constants/index.ts

49 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
* 所有常量入口
*
* @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';
import USAGE_STATUS_ENUM from './business/wms/base/usagestatus-const'
import ASN_ORDER_TYPE_ENUM from '/@/api/business/wms/receive/asn/asn-const'
import PICK_ORDER_TYPE_ENUM from '/@/api/business/wms/shipping/pick/pick-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,
...USAGE_STATUS_ENUM,
...ASN_ORDER_TYPE_ENUM,
...PICK_ORDER_TYPE_ENUM
};