@@ -1650,6 +1650,10 @@ | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Index.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Index.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\StampDetailIndex.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\StampDetailIndex.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\Form.css" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\Form.js" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\Index.js" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\StampDetailIndex.js" /> | |||||
<Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Form.js" /> | <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Form.js" /> | ||||
<Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.js" /> | <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.js" /> | ||||
<Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormView.js" /> | <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormView.js" /> | ||||
@@ -8289,6 +8293,9 @@ | |||||
<Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Index.cshtml" /> | <Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Index.cshtml" /> | ||||
<Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Form.cshtml" /> | <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Form.cshtml" /> | ||||
<Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Index.cshtml" /> | <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Index.cshtml" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\Form.cshtml" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\Index.cshtml" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampPersonal\StampDetailIndex.cshtml" /> | |||||
<None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | <None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | ||||
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | <None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | ||||
<Content Include="Views\Login\Default-beifen.cshtml" /> | <Content Include="Views\Login\Default-beifen.cshtml" /> | ||||
@@ -168,6 +168,8 @@ | |||||
<add key="QJUrl" value="www.qj.com"/> | <add key="QJUrl" value="www.qj.com"/> | ||||
<!--系主任角色Id--> | <!--系主任角色Id--> | ||||
<add key="DeptDirectorRoleId" value="9310c5f3-1a0a-4f23-9452-3e5a15b3b722" /> | <add key="DeptDirectorRoleId" value="9310c5f3-1a0a-4f23-9452-3e5a15b3b722" /> | ||||
<!--学校签章使用权角色Id 流程审批时是否有使用学校签章的权限;--> | |||||
<add key="StampRightRoleId" value="cf0dc3da-3706-41ec-9032-02d1f4650d3b"/> | |||||
<!-- 登录次数限制:登录连续错误要禁止登录 --> | <!-- 登录次数限制:登录连续错误要禁止登录 --> | ||||
<add key="ForbidLoginNum" value="5"/> | <add key="ForbidLoginNum" value="5"/> | ||||
<!-- 禁止登录时间(分钟) --> | <!-- 禁止登录时间(分钟) --> | ||||
@@ -227,6 +227,7 @@ | |||||
<Compile Include="Modules\RepairReport\RepairReportTeacherApi.cs" /> | <Compile Include="Modules\RepairReport\RepairReportTeacherApi.cs" /> | ||||
<Compile Include="Modules\RepairReport\RepairReportStudentApi.cs" /> | <Compile Include="Modules\RepairReport\RepairReportStudentApi.cs" /> | ||||
<Compile Include="Modules\SSOApi.cs" /> | <Compile Include="Modules\SSOApi.cs" /> | ||||
<Compile Include="Modules\StampPersonalApi.cs" /> | |||||
<Compile Include="Modules\StuEnrollOfficialApi.cs" /> | <Compile Include="Modules\StuEnrollOfficialApi.cs" /> | ||||
<Compile Include="Modules\AnnexesNoLoginApi.cs" /> | <Compile Include="Modules\AnnexesNoLoginApi.cs" /> | ||||
<Compile Include="Modules\AssetManagementSystem\Ass_AssetsInfoItemApi.cs" /> | <Compile Include="Modules\AssetManagementSystem\Ass_AssetsInfoItemApi.cs" /> | ||||
@@ -191,7 +191,7 @@ namespace Learun.Application.WebApi | |||||
ReqParameter req = this.Bind<ReqParameter>(); | ReqParameter req = this.Bind<ReqParameter>(); | ||||
loginMark = req.loginMark; | loginMark = req.loginMark; | ||||
token = req.token; | token = req.token; | ||||
if (path == "/learun/adms/user/login"|| path == "/learun/adms/user/loginbyIdCard" || path == "/" || path == "/bgimg" || path == "/learun/adms/user/img" || path == "/learun/adms/desktop/img"||path== "/learun/adms/user/imgfordc"||path== "/learun/adms/timetable/timeTableData"||path== "/quanjiang/sso/authorize") | |||||
if (path == "/learun/adms/user/login" || path == "/learun/adms/user/loginbyIdCard" || path == "/" || path == "/bgimg" || path == "/learun/adms/user/img" || path == "/learun/adms/desktop/img" || path == "/learun/adms/user/imgfordc" || path == "/learun/adms/timetable/timeTableData" || path == "/quanjiang/sso/authorize" || path == "/learun/adms/StampPersonal/img") | |||||
{// 登录接口,默认页面接口不做权限验证处理 | {// 登录接口,默认页面接口不做权限验证处理 | ||||
return null; | return null; | ||||
} | } | ||||
@@ -111,6 +111,8 @@ | |||||
<add key="OnlineElectiveLessonApplyMax" value="2" /> | <add key="OnlineElectiveLessonApplyMax" value="2" /> | ||||
<!--系主任角色Id--> | <!--系主任角色Id--> | ||||
<add key="DeptDirectorRoleId" value="9310c5f3-1a0a-4f23-9452-3e5a15b3b722" /> | <add key="DeptDirectorRoleId" value="9310c5f3-1a0a-4f23-9452-3e5a15b3b722" /> | ||||
<!--学校签章使用权角色Id 流程审批时是否有使用学校签章的权限;--> | |||||
<add key="StampRightRoleId" value="cf0dc3da-3706-41ec-9032-02d1f4650d3b"/> | |||||
<!--最早上课打卡时间(分钟)--> | <!--最早上课打卡时间(分钟)--> | ||||
<add key="StuAttendanceEarliestMinute" value="15" /> | <add key="StuAttendanceEarliestMinute" value="15" /> | ||||