diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/blue.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/blue.css index 8b773c1d9..22aaf042a 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/blue.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/blue.css @@ -2,11 +2,11 @@ html,body{ background: #EBF6FF; } body.active .header { - background-image: url(../images/headBg2.jpg); + background-image: url(../../../images/DragSSO/DragSSO/headBg2.jpg); } .header{ - background-image:url('../images/headBg.jpg'); - filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../images/headBg.jpg', sizingMethod='scale'); + background-image:url('../../images/DragSSO/headBg.jpg'); + filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../../images/DragSSO/headBg.jpg', sizingMethod='scale'); } .headNum{ color: #198BE3; diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/green.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/green.css index 7a2c74d9c..6e7fcf019 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/green.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/green.css @@ -2,8 +2,8 @@ html,body{ background: #EDFEF7; } .header{ - background-image:url('../images/headBg-green.jpg'); - filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../images/headBg-green.jpg', sizingMethod='scale'); + background-image:url('../../images/DragSSO/headBg-green.jpg'); + filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../../images/DragSSO/headBg-green.jpg', sizingMethod='scale'); } .headNum{ color: #01A566; diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/index.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/index.css index 7a20f833d..0320e7253 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/index.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/index.css @@ -1,4 +1,4 @@ -@charset "utf-8"; +@charset "utf-8"; /* CSS Document */ /*****header*******/ @@ -15,7 +15,7 @@ body.active .header { z-index: 9999; - /* background-image: url(../images/headBg2.jpg); */ + /* background-image: url(../../images/DragSSO/headBg2.jpg); */ } .headLogin { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/login5.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/login5.css index 3fff8e693..4c3a57dfd 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/login5.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/login5.css @@ -52,12 +52,12 @@ position: relative; border-radius: 32px; padding: 50px 70px; - background: url('../images/login5-1.png'); + background: url('../../images/DragSSO/login5-1.png'); background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; - filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../images/login5-1.png', sizingMethod='scale'); + filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../../images/DragSSO/login5-1.png', sizingMethod='scale'); } .loginTitle { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/red.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/red.css index eaac8b1fa..af70cc143 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/red.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/css/DragSSO/red.css @@ -2,11 +2,11 @@ html,body{ background: #FFE9E7; } .header{ - background-image:url('../images/headBg-red.jpg'); - filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../images/headBg-red.jpg', sizingMethod='scale'); + background-image:url('../../images/DragSSO/headBg-red.jpg'); + filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='../../images/DragSSO/headBg-red.jpg', sizingMethod='scale'); } body.active .header { - background-image: url(../images/headBg-red.jpg); + background-image: url(../../images/DragSSO/headBg-red.jpg); } .headNum{ color: #C32015; diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/SSOSystemController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/SSOSystemController.cs index a2b7b979d..6b331e6a1 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/SSOSystemController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/SSOSystemController.cs @@ -841,13 +841,37 @@ namespace Learun.Application.Web.Controllers } /// - /// 网上办事大厅-未登录页面 + /// 网上办事大厅拖拽版-未登录页面 /// /// public ActionResult DragNoLogin() { return View(); } + /// + /// 网上办事大厅拖拽版-办事大厅模式 + /// + /// + public ActionResult DragModelOne() + { + return View(); + } + /// + /// 网上办事大厅拖拽版-效率优先模式 + /// + /// + public ActionResult DragModelTwo() + { + return View(); + } + /// + /// 网上办事大厅拖拽版-管理驾驶舱模式 + /// + /// + public ActionResult DragModelThree() + { + return View(); + } } diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/Login/Default/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/Login/Default/Index.js index d77e4f51a..642fd7567 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/Login/Default/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/Login/Default/Index.js @@ -177,6 +177,8 @@ if (res.code == 200) { if (source == "noLogin") { window.location.href = DigitalschoolMisLoginurl + "?F_Account=" + username + "&returnurl=" + Returnurl + "/SSOSystem/Index"; + } else if (source == "DragNoLogin") { + window.location.href = DigitalschoolMisLoginurl + "?F_Account=" + username + "&returnurl=" + Returnurl + "/SSOSystem/DragModelOne"; } else { if (res.data.pwd == true) { if (res.data.pwdtip == true) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/SSOSystem/DragNoLogin.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/SSOSystem/DragNoLogin.cshtml index 4961988f0..541bb0827 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/SSOSystem/DragNoLogin.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/SSOSystem/DragNoLogin.cshtml @@ -1,4 +1,6 @@ - +@using Learun.Util + + @@ -7,28 +9,28 @@ - 网上办事大厅 - - - - - - - + 网上办事大厅拖拽版 + + + + + + + - + - + - + - - - - - - + + + + + + @@ -40,12 +42,12 @@ 网上办事大厅
数字化智慧校园
-
+
历史
@@ -55,33 +57,43 @@
办事大厅模式
- + @{ + var loginInfo = LoginUserInfo.Get(); + } + @if (loginInfo == null) + { + 登录 + } + else + { + 登录 + } -
-
-
王明
-
-
-
工号 123456
-
教务部 主任
-
+ @*
+
+
王明
+
+
+
工号 123456
+
教务部 主任
+
*@
- +
-
皮肤
+
皮肤
- +
选用皮肤
@@ -92,7 +104,7 @@
- +
选用皮肤
@@ -103,7 +115,7 @@
- +
绿
选用皮肤
@@ -117,8 +129,8 @@
- - 飞星下载 + + 飞星下载
@@ -130,21 +142,11 @@
@@ -168,151 +170,39 @@
- A-D (10) + A-D (0)
- E-H (10) + E-H (0)
- I-L (10) + I-L (0)
-
-
-
班级课表
-
- M-P (10) + M-P (0)
-
-
-
班级课表
-
- Q-T (10) + Q-T (0)
-
-
-
班级课表
-
- U-X (10) + U-X (0)
-
-
-
班级课表
-
- Y-Z (10) + Y-Z (0)
-
-
-
班级课表
-
@@ -323,22 +213,22 @@
- - + +
我的收藏
- - + +
可用应用
- - + +
可用卡片
@@ -349,15 +239,15 @@
- + 我的收藏
- + 可用应用
- + 可用卡片
@@ -368,38 +258,14 @@
@@ -408,207 +274,23 @@
@@ -617,67 +299,67 @@
- + 数据看板
- + 办公事项
- + 学校公文
- + 专业总览
- + 常用链接
- + 常用服务
- + 校园总览
- + 宣传报道
- + 办公邮件
- + 通知公告
- + 智慧教育
- + 专题推荐
- + 办公业务流量
@@ -695,29 +377,29 @@
- - + +
待办任务
- - + +
我发起的
- - + +
周期服务
- - + +
未读消息
@@ -728,11 +410,11 @@
- + 任务
- + 消息
@@ -742,123 +424,55 @@
  • - 3 + 0 待办任务
  • - 3 + 0 我发起的
  • - 3 + 0 周期服务
  • - 3 + 0 已办任务
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
+
+
+
请登录查看
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
已完成
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
+
+
+
请登录查看
-
-
暂时没有数据
+
+
请登录查看
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
已完成
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
已完成
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
已完成
+
+
+
请登录查看
@@ -880,11 +494,11 @@
- +
- +
@@ -896,93 +510,9 @@
-
-
-
- -
- 校园一卡通余额 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 红湖付款码余额 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 图书馆借阅(未还) -
-
- ¥ 98.6 -
-
-
-
-
- -
- 已完成办公事项 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 智慧教育在线学习时长 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 办公业务往来人员 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 来往邮件数量 -
-
- ¥ 98.6 -
-
-
-
-
- -
- 累计在线时长 -
-
- ¥ 98.6 -
+
+
+
请登录查看
@@ -998,20 +528,20 @@
  • - +
    待办任务 - 10 + 0
  • - +
    已办任务
  • - +
    我发起的
  • @@ -1019,49 +549,21 @@
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
+
+
+
请登录查看
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
+
+
+
请登录查看
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
-
-
-
刘艳的出差申请审批
-
2020-09-01 10:25:36
-
请处理
+
+
+
请登录查看
@@ -1076,53 +578,10 @@
@@ -1134,17 +593,9 @@
-
-
班级总数
-
12
-
-
-
专业学生
-
252
-
-
-
专业教室
-
97
+
+
+
请登录查看
@@ -1160,20 +611,20 @@
  • - +
    系统直通 - 3 + 0
  • - +
    系统链接
  • - +
    网站链接
  • @@ -1181,15 +632,22 @@
- 研究生系统 - 教科研系统 - 人事管理系统 +
+
+
请登录查看
+
- 人事管理系统 +
+
+
请登录查看
+
- 研究生系统 +
+
+
请登录查看
+
@@ -1206,208 +664,88 @@
-
-
- +
+
+
请登录查看
-
-
-
暂时没有数据
+
+
请登录查看
-
-
暂时没有数据
+
+
请登录查看
-
-
暂时没有数据
+
+
请登录查看
-
-
暂时没有数据
+
+
请登录查看
@@ -1421,59 +759,9 @@
-
-
- - 专业总数 -
-
- 27 -
-
-
-
- - 班级总数 -
-
- 27 -
-
-
-
- - 在校学生 -
-
- 27 -
-
-
-
- - 在校教师 -
-
- 27 -
-
-
-
- - 在用教室 -
-
- 27 -
-
-
-
- - 在用实验室 -
-
- 27 -
+
+
+
请登录查看
@@ -1485,50 +773,10 @@
@@ -1543,14 +791,14 @@