You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
534 B
23 lines
534 B
|
2 months ago
|
/**
|
||
|
|
* 字典key 编码 常量
|
||
|
|
*
|
||
|
|
* 该常量来自于 字典管理中的数据,写在该文件目的是为了统一引用,将来好修改
|
||
|
|
*
|
||
|
|
* @Author: 1024创新实验室-主任:卓大
|
||
|
|
* @Date: 2024-09-03 22:09:10
|
||
|
|
* @Wechat: zhuda1024
|
||
|
|
* @Email: lab1024@163.com
|
||
|
|
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const DICT_SPLIT = ',';
|
||
|
|
|
||
|
|
export const DICT_CODE_ENUM = {
|
||
|
|
GOODS_PLACE: 'GOODS_PLACE',
|
||
|
|
LEAVE_TYPE: 'LEAVE_TYPE',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default {
|
||
|
|
DICT_CODE_ENUM,
|
||
|
|
};
|