国内流行的内容管理系统(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.

144 lines
3.3KB

  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. }
  56. dl.bitem {
  57. margin: 1rem 0 10px 0;
  58. padding: 0 10px
  59. }
  60. dl.bitem dt {
  61. margin-bottom: 10px;
  62. padding-left: 10px;
  63. height: 28px;
  64. line-height: 28px;
  65. background: #f8f8f8;
  66. border-radius: .2rem;
  67. cursor: pointer
  68. }
  69. dl.bitem dt b {
  70. color: #424b51
  71. }
  72. .sitemu li {
  73. padding: 0 0 0 10px;
  74. display: block;
  75. height: 26px;
  76. line-height: 26px
  77. }
  78. .fllct {
  79. float: left
  80. }
  81. .flrct {
  82. float: right
  83. }
  84. .fa-minus-circle {
  85. color: #dc3545
  86. }
  87. .fa-plus-circle {
  88. color: #28a745
  89. }
  90. </style>
  91. </head>
  92. <body onLoad="CheckOpenMenu();">
  93. <table cellspacing="0" cellpadding="0">
  94. <tr>
  95. <td valign="top" class="mleft">
  96. <a id="link1" class="mmac">
  97. <div onClick="ShowMainMenu(1)"><b>运维<b></div>
  98. </a>
  99. <a id="link100" class="mm">
  100. <div onClick="ShowMainMenu(100)"><b>插件<b></div>
  101. </a>
  102. <a id="link5" class="mm">
  103. <div onClick="ShowMainMenu(5)"><b>更新<b></div>
  104. </a>
  105. <a id="link6" class="mm">
  106. <div onClick="ShowMainMenu(6)"><b>会员<b></div>
  107. </a>
  108. <?php
  109. if($cuserLogin->getUserType()>=10) {
  110. ?>
  111. <a id="link7" class="mm">
  112. <div onClick="ShowMainMenu(7)"><b>模板<b></div>
  113. </a>
  114. <a id="link10" class="mm">
  115. <div onClick="ShowMainMenu(10)"><b>系统<b></div>
  116. </a>
  117. <?php
  118. }
  119. ?>
  120. </td>
  121. <td valign="top" class="mright">
  122. <div id="ct1"><?php GetMenus($cuserLogin->getUserRank(),'main'); ?></div>
  123. <div id="ct100"></div>
  124. <div id="ct3"></div>
  125. <div id="ct5"></div>
  126. <div id="ct6"></div>
  127. <div id="ct7"></div>
  128. <div id="ct20"></div>
  129. <div id="ct10"></div>
  130. </td>
  131. </tr>
  132. </table>
  133. <?php
  134. if(!empty($openitem) && $openitem!=1)
  135. {
  136. ?>
  137. <script>
  138. ShowMainMenu(100);
  139. </script>
  140. <?php
  141. }
  142. ?>
  143. </body>
  144. </html>