fix(系统设置): 修复数据填报权限授权报错问题
This commit is contained in:
parent
337f48e3f0
commit
0cf7b6e214
@ -129,6 +129,10 @@ public class XAuthServer {
|
|||||||
if (StringUtils.equals("panel", sourceType)) {
|
if (StringUtils.equals("panel", sourceType)) {
|
||||||
return SysLogConstants.SOURCE_TYPE.PANEL;
|
return SysLogConstants.SOURCE_TYPE.PANEL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (StringUtils.equals("data_fill", sourceType)) {
|
||||||
|
return SysLogConstants.SOURCE_TYPE.DATA_FILL_FORM;
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -104,6 +104,9 @@ public class LogManager {
|
|||||||
case 11:
|
case 11:
|
||||||
typeValue = "menu";
|
typeValue = "menu";
|
||||||
break;
|
break;
|
||||||
|
case 13:
|
||||||
|
typeValue = "data_fill";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user