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

149 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>DedeBIZ menu</title>
  7. <link rel="stylesheet" href="../static/web/css/admin.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.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 2px;
  18. background: #f8f8f8;
  19. overflow: scroll;
  20. overflow-x: hidden
  21. }
  22. .mleft {
  23. padding-top: 12px
  24. }
  25. .mright {
  26. padding-top: 12px;
  27. width: 100%;
  28. background: #fff;
  29. border: 1px solid #dee2e6;
  30. border-radius: 0 0 .2rem .2rem
  31. }
  32. a.mmac div {
  33. margin-bottom: 2px;
  34. padding: 8px 0;
  35. width: 50px;
  36. color: #fff;
  37. background: #4f7632;
  38. border-bottom: 1px solid #dee2e6;
  39. border-radius: .2rem 0 0 .2rem;
  40. text-align: center
  41. }
  42. a.mm div {
  43. margin-bottom: 2px;
  44. padding: 8px 0;
  45. width: 50px;
  46. color: #424b51;
  47. background: #fff;
  48. border-bottom: 1px solid #dee2e6;
  49. border-radius: .2rem 0 0 .2rem;
  50. text-align: center;
  51. cursor: pointer
  52. }
  53. a.mm:hover div {
  54. color: #fff;
  55. background: #4f7632
  56. }
  57. dl.bitem {
  58. margin: 0 10px 10px 10px;
  59. clear: both
  60. }
  61. dl.bitem dt {
  62. padding-left: 30px;
  63. height: 26px;
  64. line-height: 26px;
  65. background: #f6f6f6;
  66. border-radius: .2rem;
  67. border-bottom: 1px solid #dee2e6;
  68. cursor: pointer
  69. }
  70. dl.bitem dd {
  71. padding: 10px;
  72. background: #fff
  73. }
  74. dl.bitem dt b {
  75. color: #4f7632
  76. }
  77. .sitemu li {
  78. padding: 0 0 0 20px;
  79. height: 26px;
  80. line-height: 26px;
  81. background: url(../static/web/img/arr4.gif)no-repeat 6px 10px
  82. }
  83. .fllct {
  84. float: left
  85. }
  86. .flrct {
  87. float: right
  88. }
  89. .fa-minus-circle {
  90. color: #dc3545
  91. }
  92. .fa-plus-circle {
  93. color: #28a745
  94. }
  95. </style>
  96. </head>
  97. <body>
  98. <table cellspacing="0" cellpadding="0">
  99. <tr>
  100. <td valign="top" class="mleft">
  101. <a id="link1" class="mmac">
  102. <div onClick="ShowMainMenu(1)"><b>运维<b></div>
  103. </a>
  104. <a id="link100" class="mm">
  105. <div onClick="ShowMainMenu(100)"><b>插件<b></div>
  106. </a>
  107. <a id="link5" class="mm">
  108. <div onClick="ShowMainMenu(5)"><b>更新<b></div>
  109. </a>
  110. <a id="link6" class="mm">
  111. <div onClick="ShowMainMenu(6)"><b>会员<b></div>
  112. </a>
  113. <?php
  114. if($cuserLogin->getUserType()>=10) {
  115. ?>
  116. <a id="link7" class="mm">
  117. <div onClick="ShowMainMenu(7)"><b>模板<b></div>
  118. </a>
  119. <a id="link10" class="mm">
  120. <div onClick="ShowMainMenu(10)"><b>系统<b></div>
  121. </a>
  122. <?php
  123. }
  124. ?>
  125. </td>
  126. <td valign="top" class="mright">
  127. <div id="ct1"><?php GetMenus($cuserLogin->getUserRank(),'main'); ?></div>
  128. <div id="ct100"></div>
  129. <div id="ct3"></div>
  130. <div id="ct5"></div>
  131. <div id="ct6"></div>
  132. <div id="ct7"></div>
  133. <div id="ct20"></div>
  134. <div id="ct10"></div>
  135. </td>
  136. </tr>
  137. </table>
  138. <?php
  139. if(!empty($openitem) && $openitem!=1)
  140. {
  141. ?>
  142. <script>
  143. ShowMainMenu(100);
  144. </script>
  145. <?php
  146. }
  147. ?>
  148. </body>
  149. </html>