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

175 lines
3.8KB

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  4. <title>DedeBIZ menu</title>
  5. <link rel="stylesheet" href="css/base.css" type="text/css" />
  6. <script language="javascript" type="text/javascript" src="../static/js/dedeajax2.js"></script>
  7. <script src="../static/js/jquery.js" language="javascript" type="text/javascript"></script>
  8. <?php
  9. echo "<script language='javascript'>var curopenItem = '$openitem';</script>";
  10. ?>
  11. <script language="javascript" type="text/javascript" src="js/leftmenu.js"></script>
  12. <style>
  13. body {
  14. margin:0;
  15. background:#f2f2f2 url(images/leftmenu_bg.gif);
  16. padding-left:6px;
  17. overflow:scroll;
  18. overflow-x:hidden
  19. }
  20. div {
  21. padding:0;
  22. margin:0
  23. }
  24. .sitemu a {
  25. font-size:12px;
  26. color:rgba(0,0,0,.65)
  27. }
  28. dl.bitem {
  29. clear:both;
  30. width:140;
  31. margin:0 0 5px 12px;
  32. background:url(images/menunewbg.gif) repeat-x
  33. }
  34. dl.bitem2 {
  35. clear:both;
  36. width:140;
  37. margin:0 0 5px 12px;
  38. background:url(images/menunewbg2.gif) repeat-x
  39. }
  40. dl.bitem dt,dl.bitem2 dt {
  41. height:25px;
  42. line-height:25px;
  43. padding-left:35px;
  44. cursor:pointer
  45. }
  46. dl.bitem dt b,dl.bitem2 dt b {
  47. color:#4D6C2F
  48. }
  49. dl.bitem dd,dl.bitem2 dd {
  50. padding:6px;
  51. background-color:#fff
  52. }
  53. div.items {
  54. clear:both;
  55. padding:0;
  56. height:0
  57. }
  58. .fllct {
  59. float:left;
  60. width:80px
  61. }
  62. .flrct {
  63. padding-top:2px;
  64. float:left
  65. }
  66. .sitemu li {
  67. padding:2px 0 2px 18px;
  68. line-height:22px;
  69. background:url(images/arr4.gif) no-repeat 5px 9px
  70. }
  71. ul {
  72. padding-top:6px
  73. }
  74. li {
  75. height:22px
  76. }
  77. a.mmac div {
  78. background:url(images/leftbg2.gif) no-repeat;
  79. height:38px!important;
  80. padding:8px 4px 4px 10;
  81. word-wrap:break-word;
  82. word-break:break-all;
  83. font-weight:bold;
  84. color:#325304
  85. }
  86. a.mm div {
  87. background:url(images/leftmbg1.gif) no-repeat;
  88. height:38px!important;
  89. padding:8px 4px 4px 10;
  90. word-wrap:break-word;
  91. word-break:break-all;
  92. font-weight:bold;
  93. color:#475645;
  94. cursor:pointer
  95. }
  96. a.mm:hover div {
  97. background:url(images/leftbg2.gif) no-repeat;
  98. color:#4F7632
  99. }
  100. .mmf {
  101. height:1px;
  102. padding:5px 7px 5px 7px
  103. }
  104. #mainct {
  105. padding-top:8px;
  106. background:url(images/idnbg1.gif) repeat-y
  107. }
  108. </style>
  109. <link href="images/style<?php echo $cfg_admin_skin;?>/style.css" rel="stylesheet" type="text/css" />
  110. <base target="main" />
  111. </head>
  112. <body target="main" onLoad="CheckOpenMenu();">
  113. <table width="180" align="left" border='0' cellspacing='0' cellpadding='0' style="text-align:left;">
  114. <tr>
  115. <td valign='top' style='padding-top:10' width='20'><a id='link1' class='mmac'>
  116. <div onClick="ShowMainMenu(1)">核心</div>
  117. </a> <a id='link100' class='mm'>
  118. <div onClick="ShowMainMenu(100)">模块</div>
  119. </a> <a id='link5' class='mm'>
  120. <div onClick="ShowMainMenu(5)">生成</div>
  121. </a> <a id='link6' class='mm'>
  122. <div onClick="ShowMainMenu(6)">会员</div>
  123. </a>
  124. <?php
  125. if($cuserLogin->getUserType() >= 10) {
  126. ?>
  127. <a id='link7' class='mm'>
  128. <div onClick="ShowMainMenu(7)">模板</div>
  129. </a> <a id='link10' class='mm'>
  130. <div onClick="ShowMainMenu(10)">系统</div>
  131. </a>
  132. <?php
  133. }
  134. ?>
  135. <div class='mmf'></div>
  136. </td>
  137. <td width='160' id='mainct' valign="top">
  138. <div id='ct1'>
  139. <?php
  140. GetMenus($cuserLogin->getUserRank(), 'main');
  141. ?>
  142. </div>
  143. <div id='ct100'></div>
  144. <div id='ct3'></div>
  145. <div id='ct5'></div>
  146. <div id='ct6'></div>
  147. <div id='ct7'></div>
  148. <div id='ct20'></div>
  149. <div id='ct10'></div>
  150. </td>
  151. </tr>
  152. <tr>
  153. <td width='26'></td>
  154. <td width='160' valign='top'><img src='images/idnbgfoot.gif' /></td>
  155. </tr>
  156. </table>
  157. <?php
  158. if(!empty($openitem) && $openitem!=1)
  159. {
  160. ?>
  161. <script language='javascript'>
  162. ShowMainMenu(100);
  163. </script>
  164. <?php
  165. }
  166. ?>
  167. <script language="javascript">
  168. function myAlert() {
  169. alert('dede');
  170. }
  171. </script>
  172. </body>
  173. </html>