| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php include mymps_tpl('inc_head');?>
- <div id="<?=MPS_SOFTNAME?>" style="padding-bottom:0">
- <div class="mpstopic-category">
- <div class="panel-tab">
- <ul class="clearfix tab-list">
- <li><a href="document.php?do=document" <?php if(empty($if_check)){?>class="current"<?php }?>>全部</a></li>
- <li><a href="document.php?do=document&if_check=1" <?php if($if_check == '1'){?>class="current"<?php }?>>待审</a></li>
- <li><a href="document.php?do=document&if_check=2" <?php if($if_check == '2'){?>class="current"<?php }?>>正常</a></li>
- </ul>
- </div>
- </div>
- </div>
- <form action="document.php" method="post">
- <input name="url" type="hidden" value="<?=GetUrl()?>">
- <input name="do" type="hidden" value="docu">
- <div id="<?=MPS_SOFTNAME?>">
- <table border="0" cellspacing="0" cellpadding="0" class="vbm" >
- <tr class="firstr">
- <td width="50"></td>
- <td>状态</td>
- <td>标题</td>
- <td>会员名</td>
-
- <td>发布时间</td>
- </tr>
- <tbody onmouseover="addMouseEvent(this);">
- <?php foreach($docu AS $row){?>
- <tr bgcolor="white" >
- <td><input type='checkbox' name='ids[]' value='<?=$row[id]?>' class='checkbox' id="<?=$row[id]?>"></td>
- <td><?php echo $row[if_check] == 1 ? '<font color=green>正常</font>' :'<font color="red">待审</font>';?></td>
- <td align="left"><a href="../store.php?user=<?=$row[userid]?>&part=document&id=<?=$row[id]?>" target="_blank" title="<?=$row[title]?>"><?=$row[title]?></a></td>
- <td><a href="javascript:
- setbg('<?=MPS_SOFTNAME?>会员中心',400,110,'../box.php?part=member&userid=<?=$row[userid]?>&admindir=<?=$admindir?>')"><?=$row[tname].'('.$row[userid].')'?></a></td>
-
- <td><em><?=GetTime($row[pubtime])?></em></td>
- </tr>
- <?}?>
- </tbody>
- <tr bgcolor="#ffffff" height="28">
- <td align="center" style="border-right:1px #fff solid;"><input name="checkall" type="checkbox" class='checkbox' id="checkall" onClick="CheckAll(this.form)"/></td>
- <td colspan="9">
- <label for="delall"><input type="radio" value="delall" id="delall" name="part" class="radio">批量删除</label>
- <?php foreach($mlevel as $k => $v){?>
- <label for="level<?=$k?>"><input type="radio" value="level.<?=$k?>" id="level<?=$k?>" name="part" class="radio">转为<?=$v?></label>
- <?php }?>
- </td>
- </tr>
- </table>
- </div>
- <center><input type="submit" value="提 交" class="mymps large" name="document_submit"/></center>
- </form>
- <div class="pagination"><?php echo page2();?></div>
- <?php mymps_admin_tpl_global_foot();?>
|