|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- {dede:config.pagesize value="20"/}
- <!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 href="css/base.css" rel="stylesheet" type='text/css'>
- <script language='javascript'>
- function Sel(stype) {
- for (var i = 0; i < document.getElementsByName('aids').length; i++) {
- if (stype == 'all') document.getElementsByName('aids')[i].checked = true;
- else document.getElementsByName('aids')[i].checked = false;
- }
- }
- function checkSubmit() {
- var str = '';
- for (var i = 0; i < document.getElementsByName('aids').length; i++) {
- if (document.getElementsByName('aids')[i].checked) {
- if (str == '') str += document.getElementsByName('aids')[i].value;
- else str += ',' + document.getElementsByName('aids')[i].value;
- }
- }
- if (str == '') {
- alert('你没选择任何内容!');
- return false;
- }
- else {
- location = "friendlink_edit.php?aids=" + str + "&dopost=delall";
- }
- }
- </script>
- </head>
-
- <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
-
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" class="table table-bordered maintable mt-3">
- <tr>
- <td height="28" background="images/tbg.gif" colspan="8" style="padding-left:10px;">
- <div style="float:left">
- <b>友情链接管理</b>
- </div>
- <div style="float:right;padding-right:6px;">
- [<a href="friendlink_add.php"><u>增加链接</u></a>]
- [<a href="friendlink_type.php"><u>网站类型管理</u></a>]
- [<a href='{dede:global name=' cfg_phpurl' /}/flink.php' target='_blank'><u>友情链接预览</u></a>]
- </div>
- </td>
- </tr>
- <tr>
- <td height="30" align="center" bgcolor="#F9FCEF" colspan="8">
- <form action="friendlink_main.php" name="form1" method="get">
- <table border="0" cellspacing="0" cellpadding="3" class="table table-borderless">
- <tr>
- <td>关键字:</td>
- <td><input name="keyword" type="text" id="keyword" size="12" style="width:250px"
- value="<?php echo $keyword; ?>" /></td>
- <td>
- <select name="ischeck" id="ischeck">
- <?php
- foreach($selCheckArr as $k=>$v)
- {
- if($k==$ischeck) echo "<option value='$k' selected>$v</option>\r\n";
- else echo "<option value='$k'>$v</option>\r\n";
- }
- ?>
- </select>
- </td>
- <td>
- <input name="imageField" class="np" type="image" src="images/button_search.gif" width="60" height="22"
- border="0" />
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- <form name='form1' method='post' action='friendlink_edit.php' onSubmit='return checkSubmit();'>
- <input type='hidden' name='dopost' value='delall' />
- <input type='hidden' name='allid' value='' />
- <tr align="center" bgcolor="#FBFCE2" height="26">
- <td width="6%">选择</td>
- <td width="23%">网站名称</td>
- <td width="12%">网站Logo</td>
- <td width="15%">站长Email</td>
- <td width="15%">时间</td>
- <td width="8%">状态</td>
- <td width="8%">顺序</td>
- <td width="15%">管理</td>
- </tr>
- {dede:datalist}
- <tr align="center" bgcolor="#FFFFFF" height="26" onMouseMove="javascript:this.bgColor='#FCFDEE';"
- onMouseOut="javascript:this.bgColor='#FFFFFF';">
- <td><input type='checkbox' name='aids' value='{dede:field.id/}' class='np'></td>
- <td>{dede:field.webname function='dede_htmlspecialchars(@me)'/}<br><i>地址:{dede:field.url/}</i></td>
- <td>{dede:field.logo function="GetPic(@me)"/}</td>
- <td>{dede:field.email/}</td>
- <td>{dede:field.dtime function="MyDate('Y-m-d',@me)"/}</td>
- <td>{dede:field.ischeck function="GetSta(@me)"/}</td>
- <td>{dede:field.sortrank/}</td>
- <td>
- <a href='friendlink_edit.php?id={dede:field.id/}&dopost=getedit'>[更改]</a>
- <a href='friendlink_edit.php?id={dede:field.id/}&dopost=delete'>[删除]</a>
- </td>
- </tr>
- {/dede:datalist}
- </form>
- <tr bgcolor="#ffffff" height="28">
- <td colspan="8">
-
- <a href='#' onclick='Sel("all")' class='np coolbg'>[全选]</a>
- <a href='#' onclick='Sel("none")' class='np coolbg'>[取消]</a>
- <a href='#' onclick='checkSubmit()' class='np coolbg'>批量删除</a>
-
- </td>
- </tr>
- <tr align="center" bgcolor="#F9FCEF" height="28">
- <td colspan="8">
- {dede:pagelist listsize=6/}
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
-
- </html>
|