|
- <!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/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script language="javascript" src="../static/web/js/jquery.min.js"></script>
- <script src="../static/web/js/bootstrap.bundle.min.js"></script>
- <script language="javascript" src="../static/web/js/webajax.js"></script>
- <script language="javascript" src="js/ieemu.js"></script>
- <script language="javascript" src="js/context_menu.js"></script>
- <script language="javascript" src="js/main.js"></script>
- <script language="javascript">
- if (moz) {
- extendEventObject();
- extendElementModel();
- emulateAttachEvent();
- }
- function viewArc(aid) {
- if (aid == 0) aid = getOneItem();
- window.open("archives_do.php?aid=" + aid + "&dopost=viewArchives");
- }
- function editArc(aid) {
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?aid=" + aid + "&dopost=editArchives";
- }
- function checkArc(aid) {
- var qstr = getCheckboxItem();
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?aid=" + aid + "&dopost=checkArchives&qstr=" + qstr;
- }
- function updateArc(aid) {
- var qstr = getCheckboxItem();
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?aid=" + aid + "&dopost=makeArchives&qstr=" + qstr;
- }
- function moveArc(aid) {
- var qstr = getCheckboxItem();
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?aid=" + aid + "&dopost=moveArchives&qstr=" + qstr;
- }
- function delArc(aid) {
- var qstr = getCheckboxItem();
- if (qstr == '') {
- ShowMsg('必须选择一个或多个文档');
- return;
- }
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?qstr=" + qstr + "&aid=" + aid + "&dopost=delArchives";
- }
- function adArc(aid) {
- var qstr = getCheckboxItem();
- if (aid == 0) aid = getOneItem();
- location = "archives_do.php?aid=" + aid + "&dopost=commendArchives&qstr=" + qstr;
- }
- function moveArc(e, obj, cid) {
- var qstr = getCheckboxItem();
- if (qstr == '') {
- ShowMsg('必须选择一个或多个文档');
- return;
- }
- LoadQuickDiv(e, 'archives_do.php?dopost=moveArchives&qstr=' + qstr + '&channelid=' + cid + '&rnd=' + Math.random(), 'moveArchives', '450px', '180px');
- ChangeFullDiv('show');
- }
- //上下文菜单
- function ShowMenu(evt, obj, aid, atitle) {
- var popupoptions
- popupoptions = [
- new ContextItem("浏览文档", function () { viewArc(aid); }),
- new ContextItem("编辑文档", function () { editArc(aid); }),
- new ContextSeperator(),
- new ContextItem("更新HTML", function () { updateArc(aid); }),
- new ContextItem("审核文档", function () { checkArc(aid); }),
- new ContextItem("推荐文档", function () { adArc(aid); }),
- new ContextItem("删除文档", function () { delArc(aid); }),
- new ContextSeperator(),
- new ContextItem("复制(C)", function () { copyToClipboard(atitle); }),
- new ContextItem("重载页面", function () { location.reload(); }),
- new ContextSeperator(),
- new ContextItem("全部选择", function () { selAll(); }),
- new ContextItem("取消选择", function () { noSelAll(); }),
- new ContextSeperator(),
- new ContextItem("关闭菜单", function () { })
- ]
- ContextMenu.display(evt, popupoptions);
- //location="catalog_main.php";
- }
- //获得选中文件的文件名
- 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 getCheckboxItem2() {
- 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;
- }
- //获得选中其中一个的id
- function getOneItem() {
- 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) {
- allSel = document.form2.arcID[i].value;
- break;
- }
- }
- 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;
- }
- }
- }
- </script>
- </head>
- <body leftmargin="8" topmargin="8" background='../static/web/img/allbg.gif' onLoad="ContextMenu.intializeContextMenu()">
- <table width="98%" align="center" border="0" cellspacing="0" cellpadding="0" class="table table-bordered maintable mt-3">
- <tr>
- <td>
- <button type='button' class="btn btn-success btn-sm" onClick="location='catalog_do.php?channelid={dede:global.channelid/}&cid={dede:global.cid/}&dopost=addArchives';">添加文档</button>
- {dede:if $adminid==$mid }
- <button type='button' class="btn btn-success btn-sm" onClick="location='content_list.php?cid={dede:global.cid/}&mid=0';">全部文档</button>
- {else}
- <button type='button' class="btn btn-success btn-sm" onClick="location='content_list.php?cid={dede:global.cid/}&mid=<?php echo $cuserLogin->getUserID(); ?>';">我的文档</button>
- {/dede:if}
- <button type='button' class="btn btn-success btn-sm" onClick="location='catalog_main.php';">栏目管理</button>
- <button type='button' class="btn btn-success btn-sm" name='bb1' onClick="location='makehtml_list.php?cid={dede:global.cid/}';">更新列表</button>
- <button type='button' class="btn btn-success btn-sm" name='bb2' onClick="location='makehtml_archives.php?cid={dede:global.cid/}';">更新文档</button>
- <?php echo $CheckUserSend; ?>
- </td>
- </tr>
- </table>
- <form name='form3' action='content_sg_list.php' method='get'>
- <input type='hidden' name='dopost' value='listArchives'>
- <table width="98%" cellpadding="1" cellspacing="1" align="center" class="mt-3 mb-3" style="border:1px solid #dee2e6">
- <tr>
- <td height="36" bgcolor="#f8f8f8">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <select name='cid' style="margin:0 10px;width:160px">
- <option value='0'>选择分类</option>
- {dede:global.optionarr/}
- </select>
- </td>
- <td>关键词:</td>
- <td><input type='text' name='keyword' value='{dede:global.keyword/}' style='margin-right:10px;width:260px'></td>
- <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </form>
- <table width="98%" cellpadding="2" cellspacing="1" align="center" class="table table-bordered maintable" style="margin-top:10px">
- <tr bgcolor="#E7E7E7">
- <td height="30" colspan="9" background="../static/web/img/tbg.gif" style="padding-left:10px">{dede:global.positionname/}文档列表(使用鼠标右键进行常用操作)</td>
- </tr>
- <form name="form2">
- <tr align="center" bgcolor="#FBFCE2" height="30">
- <td width="6%">ID</td>
- <td width="6%">选择</td>
- <td width="30%">文章标题</td>
- <td width="10%">更新时间</td>
- <td width="14%">类目</td>
- <td width="9%">点击</td>
- <td width="9%">权限</td>
- <td width="6%">发布人</td>
- <td width="10%">操作</td>
- </tr>
- {dede:datalist empty='<tr><td colspan="9"><center>暂无内容</center></td></tr>'}
- <tr align="center" bgcolor="#ffffff" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#ffffff';">
- <td>{dede:field.id/}</td>
- <td><input name="arcID" type="checkbox" id="arcID" value="{dede:field.aid/}" class="np"></td>
- <td align='left'>
- <a href='archives_do.php?aid={dede:field.aid/}&dopost=editArchives' oncontextmenu="ShowMenu(event,this,{dede:field.aid/},'{dede:field.title function=" str_replace('\'', '' , @me)" /}')">{dede:field.title/}{dede:field.flag function='IsCommendArchives(@me)'/}</a>
- </td>
- <td>{dede:field.senddate function='GetDateMk(@me)'/}</td>
- <td>{dede:field.typename/}</td>
- <td>{dede:field.arcrank function="GetRankName(@me)"/}</td>
- <td>{dede:field.click/}</td>
- <td>{dede:field.mid function=GetMemberName(@me)/}</td>
- <td>
- <a href="javascript:editArc({dede:field.aid/})" class="btn btn-success btn-sm" title="编辑"><i class="fa fa-pencil-square-o"></i></a>
- <a href="javascript:viewArc({dede:field.aid/})" class="btn btn-success btn-sm" title="预览"><i class="fa fa-globe"></i></a>
- </td>
- </tr>
- {/dede:datalist}
- <tr bgcolor="#ffffff">
- <td height="26" colspan="9">
- <a class="btn btn-success btn-sm" href="javascript:selAll()" class="coolbg">全选</a>
- <a class="btn btn-success btn-sm" href="javascript:noSelAll()" class="coolbg">取消</a>
- <a class="btn btn-success btn-sm" href="javascript:updateArc(0)" class="coolbg">更新</a>
- <a class="btn btn-success btn-sm" href="javascript:checkArc(0)" class="coolbg">审核</a>
- <a class="btn btn-success btn-sm" href="javascript:adArc(0)" class="coolbg">推荐</a>
- <a class="btn btn-success btn-sm" href="javascript:;" onClick="moveArc(event,this,<?php echo (empty($channelid) ? 0 : $channelid); ?>)" class="coolbg">移动</a>
- <a class="btn btn-success btn-sm" href="javascript:delArc(0)" class="coolbg">删除</a>
- <?php
- if(!empty($f)) {
- ?>
- <a href="javascript:ReturnValue()" class="btn btn-success btn-sm">把选定值加到列表</a>
- <?php
- }
- ?>
- </td>
- </tr>
- </form>
- <tr align="right" bgcolor="#f8f8f8">
- <td height="26" colspan="9" align="center">
- {dede:pagelist listsize=3/}
- </td>
- </tr>
- </table>
- </body>
- </html>
|