国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

145 lines
3.4KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>系统菜单</title>
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. <script src="../static/web/js/webajax.js"></script>
  10. <script src="../static/web/js/jquery.min.js"></script>
  11. <?php echo "<script>var curopenItem = '$openitem';</script>"; ?>
  12. <script src="js/leftmenu.js"></script>
  13. <base target="main">
  14. <style>
  15. body {
  16. margin: 0;
  17. padding: 0 6px;
  18. background: #f8f8f8;
  19. overflow: scroll;
  20. overflow-x: hidden
  21. }
  22. .mleft {
  23. padding-top: 1rem
  24. }
  25. .mright {
  26. width: 100%;
  27. background: #fff;
  28. box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  29. border-radius: 0 0 .2rem .2rem
  30. }
  31. a.mmac div {
  32. margin-bottom: 6px;
  33. padding: 6px 0;
  34. width: 50px;
  35. color: #fff;
  36. background: #424b51;
  37. box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  38. border-radius: .2rem 0 0 .2rem;
  39. text-align: center
  40. }
  41. a.mm div {
  42. margin-bottom: 6px;
  43. padding: 6px 0;
  44. width: 50px;
  45. color: #424b51;
  46. background: #fff;
  47. box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  48. border-radius: .2rem 0 0 .2rem;
  49. text-align: center;
  50. cursor: pointer
  51. }
  52. a.mm:hover div {
  53. color: #fff;
  54. background: #424b51;
  55. transition: all .2s
  56. }
  57. dl.bitem {
  58. margin: 1rem 0 10px 0;
  59. padding: 0 10px
  60. }
  61. dl.bitem dt {
  62. margin-bottom: 10px;
  63. padding-left: 10px;
  64. height: 28px;
  65. line-height: 28px;
  66. background: #f8f8f8;
  67. border-radius: .2rem;
  68. cursor: pointer
  69. }
  70. dl.bitem dt b {
  71. color: #424b51
  72. }
  73. .sitemu li {
  74. padding: 0 0 0 10px;
  75. display: block;
  76. height: 26px;
  77. line-height: 26px
  78. }
  79. .fllct {
  80. float: left
  81. }
  82. .flrct {
  83. float: right
  84. }
  85. .fa-minus-circle {
  86. color: #dc3545
  87. }
  88. .fa-plus-circle {
  89. color: #28a745
  90. }
  91. </style>
  92. </head>
  93. <body onLoad="CheckOpenMenu();">
  94. <table cellspacing="0" cellpadding="0">
  95. <tr>
  96. <td valign="top" class="mleft">
  97. <a id="link1" class="mmac">
  98. <div onClick="ShowMainMenu(1)"><b>运维<b></div>
  99. </a>
  100. <a id="link100" class="mm">
  101. <div onClick="ShowMainMenu(100)"><b>插件<b></div>
  102. </a>
  103. <a id="link5" class="mm">
  104. <div onClick="ShowMainMenu(5)"><b>更新<b></div>
  105. </a>
  106. <a id="link6" class="mm">
  107. <div onClick="ShowMainMenu(6)"><b>会员<b></div>
  108. </a>
  109. <?php
  110. if($cuserLogin->getUserType()>=10) {
  111. ?>
  112. <a id="link7" class="mm">
  113. <div onClick="ShowMainMenu(7)"><b>模板<b></div>
  114. </a>
  115. <a id="link10" class="mm">
  116. <div onClick="ShowMainMenu(10)"><b>系统<b></div>
  117. </a>
  118. <?php
  119. }
  120. ?>
  121. </td>
  122. <td valign="top" class="mright">
  123. <div id="ct1"><?php GetMenus($cuserLogin->getUserRank(),'main'); ?></div>
  124. <div id="ct100"></div>
  125. <div id="ct3"></div>
  126. <div id="ct5"></div>
  127. <div id="ct6"></div>
  128. <div id="ct7"></div>
  129. <div id="ct20"></div>
  130. <div id="ct10"></div>
  131. </td>
  132. </tr>
  133. </table>
  134. <?php
  135. if(!empty($openitem) && $openitem!=1)
  136. {
  137. ?>
  138. <script>
  139. ShowMainMenu(100);
  140. </script>
  141. <?php
  142. }
  143. ?>
  144. </body>
  145. </html>