|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>选择文档</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- </head>
- <body>
- <form name="form3" action="content_select_list.php" method="get">
- <input type="hidden" name="f" value="<?php echo $f?>">
- <table align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f8f9fa">
- <input type="text" name="keyword" class="admin-input-lg mr-3" value="<?php echo $keyword?>" placeholder="请输入文档标题或文档id">
- <select name="cid" class="admin-input-sm">
- <option value="0">选择分类</option>
- <?php echo $optionarr?>
- </select>
- <button type="submit" name="submit" class="btn btn-success btn-sm">搜索</button>
- </td>
- </tr>
- </table>
- </form>
- <form name="form2">
- <table align="center" class="table maintable mb-3">
- <tr>
- <td bgcolor="#f8fafb" colspan="9">文档列表</td>
- </tr>
- <tr bgcolor="#f8f9fa" align="center">
- <td width="6%">选择</td>
- <td width="6%">id</td>
- <td width="26%">文档标题</td>
- <td width="10%">更新时间</td>
- <td width="12%">栏目</td>
- <td width="6%">点击</td>
- <td width="6%">网页</td>
- <td width="6%">权限</td>
- <td>属性</td>
- </tr>
- {dede:datalist empty='<tr><td colspan="9" align="center">暂无记录</td></tr>'}
- <tr align="center">
- <td><input type="checkbox" name="arcID" value="{dede:field.id/}"></td>
- <td>{dede:field.id/}</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>
- <td 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>
- <tr>
- <td bgcolor="#f8fafb" colspan="9" align="center">{dede:pagelist listsize='6'/}</td>
- </tr>
- </table>
- </form>
- <script>
- //获得选中文件的文件名
- 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>
- </body>
- </html>
|