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

109 lines
4.6KB

  1. {dede:config.pagesize value="20"/}
  2. <!DOCTYPE html
  3. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  7. <title>单独页面管理</title>
  8. <link rel="stylesheet" href="../static/css/bootstrap.min.css">
  9. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  10. <link href='css/base.css' rel='stylesheet' type='text/css'>
  11. <style>
  12. ul {
  13. padding: 0px;
  14. margin: 0px;
  15. }
  16. li {
  17. float: left;
  18. padding-right: 8px;
  19. line-height: 24px;
  20. }
  21. </style>
  22. </head>
  23. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  24. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6"
  25. style="margin-bottom:6px" class="table maintable table-bordered mt-3">
  26. <tr>
  27. <td bgcolor="#F2F2F2" colspan="6" style="padding-left:10px;">
  28. <form action='templets_one.php' name='sss'>
  29. <ul>
  30. <li>关键字:</li>
  31. <li><input type='text' name='keyword' value="<?php if(!empty($keyword)) $keyword = ''; ?>"
  32. style='width:160px' /></li>
  33. <li>标识:</li>
  34. <li><?php
  35. $likeid = (!isset($likeid) ? '' : $likeid);
  36. echo "<select name='likeid' id='likeid'>\r\n";
  37. $dsql->Execute("s","Select likeid From `#@__sgpage` group by likeid ");
  38. echo "<option value=''>不限</option>\r\n";
  39. while($arr = $dsql->GetArray('s'))
  40. {
  41. if($likeid==$arr['likeid']) echo "<option value='{$arr['likeid']}' selected>{$arr['likeid']}</option>\r\n";
  42. else echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>\r\n";
  43. }
  44. echo "</select>\r\n";
  45. ?></li>
  46. <li><input name="imageField" type="image" src="images/button_search.gif" width="60" height="22"
  47. border="0" class="np" /></li>
  48. </ul>
  49. </form>
  50. </td>
  51. </table>
  52. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" class="table table-bordered maintable">
  53. <tr>
  54. <td height="28" background="images/tbg.gif" colspan="7" style="padding-left:10px;">
  55. <div style="float:left">
  56. <b>◆单独页面管理</b>
  57. </div>
  58. <div style="float:right">
  59. [<a href="templets_one_add.php"><u>增加一个页面</u></a>]
  60. &nbsp;[<a href="#" onClick="document.form1.submit();"><u>更新选中页面</u></a>]
  61. &nbsp;[<a href="templets_one_edit.php?dopost=mkall"><u>更新所有页面</u></a>]
  62. &nbsp;&nbsp;&nbsp;&nbsp;
  63. </div>
  64. </td>
  65. </tr>
  66. <tr align="center" bgcolor="#FBFCE2" height="24">
  67. <td width="6%">选择</td>
  68. <td width="6%">编号</td>
  69. <td width="30%">页面名称</td>
  70. <td width="11%">需编译</td>
  71. <td width="10%">标识</td>
  72. <td width="12%">修改时间</td>
  73. <td width="21%">管理</td>
  74. </tr>
  75. <form name='form1' action='templets_one_edit.php'>
  76. <input type='hidden' name='dopost' value='mksel' />
  77. {dede:datalist}
  78. <tr align="center" bgcolor="#FFFFFF" height="24" onMouseMove="javascript:this.bgColor='#FCFDEE';"
  79. onMouseOut="javascript:this.bgColor='#FFFFFF';">
  80. <td><input type='checkbox' name='ids[]' value='{dede:field.aid /}' class='np'></td>
  81. <td>{dede:field.aid /}</td>
  82. <td><a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit'>{dede:field.title /}</a></td>
  83. <td>{dede:field.ismake function='GetIsMake(@me)'/}</td>
  84. <td>{dede:field.likeid /}</td>
  85. <td>{dede:field.uptime function='GetDateMk(@me)'/}</td>
  86. <td>
  87. <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit'>[更改]</a>
  88. <a href="templets_one_edit.php?aid={dede:field.aid /}&dopost=view" target='_blank'>[预览]</a>
  89. &nbsp;|&nbsp;
  90. <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=delete'>[删除]</a>
  91. </td>
  92. </tr>
  93. {/dede:datalist}
  94. </form>
  95. <tr align="center" bgcolor="#F9FCEF" height="24">
  96. <td colspan="7">
  97. {dede:pagelist listsize=6/}
  98. </td>
  99. </tr>
  100. </table>
  101. </td>
  102. </tr>
  103. </table>
  104. </body>
  105. </html>