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

161 lines
3.7KB

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