feat(日志管理): 开发日志管理功能。
fix(项目任务): 1、任务完成后需要依然能够修改工作日志,但是只能修改工作内容和上传附件。2、任务完成后,协办人的工作日志不应该能删除、所有任务里的成员不能新增工作日志,前端不显示新增、删除按钮。3、团队成员的面板,在成员排序时,让有下属的成员提前。4、在任务弹出框有个快速用执行的信息填充的icon。
This commit is contained in:
@@ -128,3 +128,51 @@ export const RDMS_OVERTIME_DURATION_DICT_CODE = 'rdms_overtime_duration';
|
||||
* 显示名与颜色(hex)均走字典,前端按 level 取色不硬编码。
|
||||
*/
|
||||
export const NOTIFY_MESSAGE_LEVEL_DICT_CODE = 'notify_message_level';
|
||||
|
||||
/**
|
||||
* 系统用户类型字典编码
|
||||
*
|
||||
* 对应业务字段:系统日志中的 userType
|
||||
* 来源口径:后端 DictTypeConstants.USER_TYPE = user_type
|
||||
*/
|
||||
export const SYSTEM_USER_TYPE_DICT_CODE = 'user_type';
|
||||
|
||||
/**
|
||||
* 系统登录日志类型字典编码
|
||||
*
|
||||
* 对应业务字段:登录日志中的 logType
|
||||
* 来源口径:后端 DictTypeConstants.LOGIN_TYPE = system_login_type
|
||||
*/
|
||||
export const SYSTEM_LOGIN_TYPE_DICT_CODE = 'system_login_type';
|
||||
|
||||
/**
|
||||
* 系统登录结果字典编码
|
||||
*
|
||||
* 对应业务字段:登录日志中的 result
|
||||
* 来源口径:后端 DictTypeConstants.LOGIN_RESULT = system_login_result
|
||||
*/
|
||||
export const SYSTEM_LOGIN_RESULT_DICT_CODE = 'system_login_result';
|
||||
|
||||
/**
|
||||
* 基础设施操作分类字典编码
|
||||
*
|
||||
* 对应业务字段:API 访问日志中的 operateType
|
||||
* 来源口径:后端 DictTypeConstants.OPERATE_TYPE = infra_operate_type
|
||||
*/
|
||||
export const INFRA_OPERATE_TYPE_DICT_CODE = 'infra_operate_type';
|
||||
|
||||
/**
|
||||
* API 错误日志处理状态字典编码
|
||||
*
|
||||
* 对应业务字段:API 错误日志中的 processStatus
|
||||
* 来源口径:后端 DictTypeConstants.API_ERROR_LOG_PROCESS_STATUS = infra_api_error_log_process_status
|
||||
*/
|
||||
export const INFRA_API_ERROR_LOG_PROCESS_STATUS_DICT_CODE = 'infra_api_error_log_process_status';
|
||||
|
||||
/**
|
||||
* 系统请求方式字典编码
|
||||
*
|
||||
* 对应业务字段:操作日志中的 requestMethod
|
||||
* 来源口径:用户明确指定请求方式下拉来自运行时字典 system_request_method
|
||||
*/
|
||||
export const SYSTEM_REQUEST_METHOD_DICT_CODE = 'system_request_method';
|
||||
|
||||
Reference in New Issue
Block a user