|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>选择文章</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="css/base.css">
- <script language="javascript">
- //获得选中文件的文件名
- function getCheckboxItem() {
- var allSel = "";
- if (document.form2.arcID.value) return document.form2.arcID.value;
- for (i = 0; i < document.form2.arcID.length; i++) {
- if (document.form2.arcID[i].checked) {
- if (allSel == "")
- allSel = document.form2.arcID[i].value;
- else
- allSel = allSel + "," + document.form2.arcID[i].value;
- }
- }
- return allSel;
- }
- function selAll() {
- for (i = 0; i < document.form2.arcID.length; i++) {
- if (!document.form2.arcID[i].checked) {
- document.form2.arcID[i].checked = true;
- }
- }
- }
- function noSelAll() {
- for (i = 0; i < document.form2.arcID.length; i++) {
- if (document.form2.arcID[i].checked) {
- document.form2.arcID[i].checked = false;
- }
- }
- }
- function ReturnValue() {
- if (window.opener.document.<?php echo $f ?>.value == "") {
- window.opener.document.<?php echo $f ?>.value = getCheckboxItem();
- } else {
- window.opener.document.<?php echo $f ?>.value += "," + getCheckboxItem();
- }
- window.opener = null;
- window.close();
- }
- </script>
- </head>
- <body leftmargin="0" topmargin="0" background='images/allbg.gif'>
-
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#D6D6D6" class="table maintable table-bordered mt-3">
- <tr bgcolor="#E7E7E7">
- <td height="26" colspan="9" background="images/tbg.gif">
- <strong> §文章列表</strong>
- </td>
- </tr>
- <form name="form2">
- <tr align="center" bgcolor="#FAFAF1" height="26">
- <td width="6%">ID</td>
- <td width="4%">选择</td>
- <td width="30%">文章标题</td>
- <td width="10%">更新时间</td>
- <td width="11%">类目</td>
- <td width="8%">点击</td>
- <td width="7%">HTML</td>
- <td width="10%">权限</td>
- <td width="13%">属性</td>
- </tr>
- {dede:datalist}
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='#FCFDEE';"
- onMouseOut="javascript:this.bgColor='#FFFFFF';" height="26">
- <td>{dede:field.id/}</td>
- <td><input name="arcID" type="checkbox" id="arcID" value="{dede:field.id/}" class="np"></td>
- <td align='left'>
- <a href='archives_do.php?aid={dede:field.id/}&dopost=editArchives'>{dede:field.title/}</a>
- </td>
- <td>{dede:field.senddate function="GetDateMk(@me)" /}</td>
- <td>{dede:field.typeid function='GetTypename(@me)'/}</td>
- <td>{dede:field.click/}</td>
- <td>{dede:field.ismake function="IsHtmlArchives(@me)" /}</td>
- <td>{dede:field.arcrank function="GetRankName(@me)" /}</td>
- <td>{dede:field.flag function="IsCommendArchives(@me)" /}</td>
- </tr>
- {/dede:datalist}
- <tr bgcolor="#FAFAF1">
- <td height="26" colspan="9">
-
- <a href="javascript:selAll()" class="btn btn-success btn-sm">全选</a>
-
- <a href="javascript:noSelAll()" class="btn btn-success btn-sm">取消</a>
-
- <a href="javascript:ReturnValue()" class="btn btn-success btn-sm">把选定值加到列表</a>
- </td>
- </tr>
- </form>
- <tr align="right" bgcolor="#EEF4EA">
- <td height="26" colspan="9" align="center">
- {dede:pagelist listsize=5/}
- </td>
- </tr>
- </table>
- <table width='100%' align="center" border='0' cellpadding='1' cellspacing='1' bgcolor='#CBD8AC' class="table maintable table-borderless">
- <tr bgcolor='#EEF4EA'>
- <form name='form3' action='content_select_list.php' method='get'>
- <input type='hidden' name='f' value='<?php echo $f?>'>
- <td>
- <table width='600' border='0' cellpadding='0' cellspacing='0'>
- <tr>
- <td width='160' align='center'>请选择类目:</td>
- <td width='160'>
- <select name='cid' style='width:150px'>
- <option value='0'>选择分类</option>
- <?php echo $optionarr?>
- </select>
- </td>
- <td width='100'>
- 关键字:
- </td>
- <td width='160'>
- <input type='text' name='keyword' value='<?php echo $keyword?>' style='width:150'>
- </td>
- <td width='100'>
- <button type="submit" class="btn btn-success btn-sm">搜索</button>
- </td>
- </tr>
- </table>
- </td>
- </form>
- </tr>
- </table>
- </body>
-
- </html>
|