v2.0 代码提交

This commit is contained in:
zhuoda
2022-10-27 22:14:48 +08:00
parent 207b949484
commit f7e5f6d539
1851 changed files with 108157 additions and 2231 deletions

View File

@@ -1,29 +0,0 @@
/**
* 系统更新日志 枚举
*
* @Author: 卓大
* @Date: 2022-09-26 14:53:50
* @Copyright 1024创新实验室
*/
/**
* 更新类型:[1:特大版本功能更新;2:功能更新;3:bug修复]
*/
export const CHANGE_LOG_TYPE_ENUM = {
MAJOR_UPDATE: {
value: 1,
desc: '重大更新',
},
FUNCTION_UPDATE: {
value: 2,
desc: '功能更新',
},
BUG_FIX: {
value: 3,
desc: 'Bug修复',
},
};
export default {
CHANGE_LOG_TYPE_ENUM,
};