您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

147 行
3.2 KiB

  1. @using Learun.Application.TwoDevelopment.Permission
  2. @{
  3. ViewBag.Title = "title";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style type="text/css">
  7. body {
  8. padding: 10px;
  9. }
  10. .lr-desktop-panel {
  11. position: relative;
  12. width: 100%;
  13. height: 100%;
  14. background-color: #fff;
  15. border: 1px solid #ccc;
  16. padding: 15px 20px;
  17. border-radius: 3px;
  18. }
  19. .navTitle {
  20. font-size: 18px;
  21. background: #EDF6FB;
  22. color: #414045;
  23. line-height: 24px;
  24. padding: 15px;
  25. }
  26. .navTitle i {
  27. /*color: #6A9AE1;*/
  28. font-size: 18px;
  29. margin-right: 5px;
  30. position: relative;
  31. top: 2px;
  32. }
  33. .navRow {
  34. overflow: hidden;
  35. margin: 0 -8px;
  36. }
  37. .navCon {
  38. display: none;
  39. }
  40. .navCon.active {
  41. display: block;
  42. }
  43. .navClo6 {
  44. margin-top: 22px;
  45. padding: 0 8px;
  46. float: left;
  47. width: 16.666667%;
  48. }
  49. .navBox {
  50. background: #7299E4;
  51. border-radius: 6px;
  52. overflow: hidden;
  53. height: 126px;
  54. border: 1px solid #7299E4;
  55. position: relative;
  56. cursor: pointer;
  57. }
  58. .navT {
  59. padding: 20px;
  60. font-size: 18px;
  61. line-height: 24px;
  62. color: #fff;
  63. }
  64. .navT i {
  65. font-size: 18px;
  66. margin-right: 20px;
  67. position: relative;
  68. /*top: 2px;*/
  69. }
  70. .navMore {
  71. background: #fff;
  72. min-height: 15px;
  73. line-height: 50px;
  74. padding: 0 20px;
  75. position: absolute;
  76. bottom: 0;
  77. left: 0;
  78. right: 0;
  79. text-align: right;
  80. color: #7299E4;
  81. }
  82. .navMore i {
  83. margin-left: 5px;
  84. }
  85. .navTitle .fa-angle-left {
  86. width: 24px;
  87. height: 24px;
  88. opacity: .3;
  89. line-height: 24px;
  90. text-align: center;
  91. background: #fff;
  92. color: #666;
  93. border-radius: 3px;
  94. margin-right: 25px;
  95. top: 0px;
  96. }
  97. .navCons .navMore {
  98. text-align: center;
  99. }
  100. .navCons .navT {
  101. text-align: right;
  102. }
  103. .navCons .navT > * {
  104. display: block;
  105. }
  106. .navCons .navT > i {
  107. font-size: 30px;
  108. margin-right: 0;
  109. margin-bottom: 10px;
  110. }
  111. .navCons .navBox {
  112. height: 156px;
  113. }
  114. </style>
  115. <div class="lr-desktop-panel lr-scroll-wrap" style="overflow: auto;">
  116. <div class="nav">
  117. @foreach (Perm_FunctionEntity permFunctionEntity in ViewBag.FunctionList)
  118. {
  119. <div class="navClo6">
  120. <div class="navBox navMoreBox" id="0f7a71fe-a95d-47a6-b8b3-854862a36225" style="background: #8564D8; border-color: #8564D8;">
  121. <div class="navT"><i class="fa fa-caret-square-o-down lr-menu-item-icon"></i><span>@permFunctionEntity.FName</span></div>
  122. <div class="navMore" style="color: #8564D8"><a href="/Home/GoToApplication?appid=@permFunctionEntity.FId" target="_blank">进入系统</a> <i class="fa fa-caret-right"></i></div>
  123. </div>
  124. </div>
  125. }
  126. </div>
  127. </div>