ListWfInfo.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require('../../class/connect.php');
  4. require('../../class/db_sql.php');
  5. require('../../class/functions.php');
  6. require '../'.LoadLang('pub/fun.php');
  7. require('../../data/dbcache/class.php');
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. $search=$ecms_hashur['ehref'];
  21. $page=(int)$_GET['page'];
  22. $page=RepPIntvar($page);
  23. $start=0;
  24. $line=intval($public_r['hlistinfonum']);//每页显示
  25. $page_line=12;//每页显示链接数
  26. $offset=$page*$line;//总偏移量
  27. $add=" and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')";
  28. $totalquery="select count(*) as total from {$dbtbpre}enewswfinfo where checktno=0".$add;
  29. $num=$empire->gettotal($totalquery);
  30. $query="select id,classid,tstatus,checktno from {$dbtbpre}enewswfinfo where checktno=0".$add;
  31. $query=$query." order by id desc limit $offset,$line";
  32. $sql=$empire->query($query);
  33. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  34. ?>
  35. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  36. <html>
  37. <head>
  38. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  39. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. <title>管理签发信息</title>
  41. </head>
  42. <body>
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  44. <tr>
  45. <td height="25">位置:<a href="../ListAllInfo.php<?=$ecms_hashur['whehref']?>">管理信息</a> &gt; <a href="ListWfInfo.php<?=$ecms_hashur['whehref']?>">管理签发信息</a></td>
  46. </tr>
  47. </table>
  48. <br>
  49. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  50. <form name="form1" method="post" action="">
  51. <tr class="header">
  52. <td width="6%" height="25"> <div align="center">ID</div></td>
  53. <td width="46%" height="25"> <div align="center">标题</div></td>
  54. <td width="9%"><div align="center">状态</div></td>
  55. <td width="13%"><div align="center">发布者</div></td>
  56. <td width="16%"><div align="center">提交时间</div></td>
  57. <td width="10%" height="25"> <div align="center">操作</div></td>
  58. </tr>
  59. <?php
  60. while($r=$empire->fetch($sql))
  61. {
  62. if($class_r[$r[classid]][tbname])
  63. {
  64. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]."_index where id='$r[id]' limit 1");
  65. //返回表
  66. $infotb=ReturnInfoMainTbname($class_r[$r[classid]][tbname],$index_r['checked']);
  67. $nr=$empire->fetch1("select title,newstime,userid,username,ismember from ".$infotb." where id='$r[id]' limit 1");
  68. }
  69. $do=$r[classid];
  70. $dob=$class_r[$r[classid]][bclassid];
  71. $addecmscheck='';
  72. if(empty($index_r['checked']))
  73. {
  74. $addecmscheck='&ecmscheck='.$ecmscheck;
  75. }
  76. //状态
  77. $st='';
  78. if($r[checktno]=='100')
  79. {
  80. $st='审核通过';
  81. }
  82. elseif($r[checktno]=='101')
  83. {
  84. $st='返工';
  85. }
  86. elseif($r[checktno]=='102')
  87. {
  88. $st='已否决';
  89. }
  90. else
  91. {
  92. $st=$r[tstatus];
  93. }
  94. //发布者
  95. if($nr[ismember])
  96. {
  97. $username=empty($nr[userid])?'游客':"会员:<a href='../member/AddMember.php?enews=EditMember&userid=".$nr[userid].$ecms_hashur['ehref']."' target='_blank'>".$nr[username]."</a>";
  98. }
  99. else
  100. {
  101. $username="<a href='../user/AddUser.php?enews=EditUser&userid=".$nr[userid].$ecms_hashur['ehref']."' target='_blank'>".$nr[username]."</a>";
  102. }
  103. ?>
  104. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  105. <td height="42"> <div align="center">
  106. <?=$r[id]?>
  107. </div></td>
  108. <td height="25">
  109. <a href="ShowWfInfo.php?classid=<?=$r[classid]?>&id=<?=$r[id]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>" title="查看内容" target="_blank"><?=$nr[title]?></a>
  110. <br>
  111. <font color="#574D5C">栏目:<a href='../ListNews.php?bclassid=<?=$class_r[$r[classid]][bclassid]?>&classid=<?=$r[classid]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>'>
  112. <font color="#574D5C"><?=$class_r[$dob][classname]?></font>
  113. </a> > <a href='../ListNews.php?bclassid=<?=$class_r[$r[classid]][bclassid]?>&classid=<?=$r[classid]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>'>
  114. <font color="#574D5C"><?=$class_r[$r[classid]][classname]?></font>
  115. </a></font> </td>
  116. <td><div align="center"><?=$st?></div></td>
  117. <td><div align="center"><?=$username?></div></td>
  118. <td><div align="center">
  119. <?=date("Y-m-d H:i:s",$nr[newstime])?>
  120. </div></td>
  121. <td height="25"> <div align="center">[<a href="#ecms" onclick="window.open('DoWfInfo.php?classid=<?=$r[classid]?>&id=<?=$r[id]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>','','width=600,height=520,scrollbars=yes');">签发</a>]</div></td>
  122. </tr>
  123. <?
  124. }
  125. ?>
  126. <tr bgcolor="#FFFFFF">
  127. <td height="25" colspan="6"> &nbsp;&nbsp;
  128. <?=$returnpage?>
  129. </td>
  130. </tr>
  131. </form>
  132. </table>
  133. </body>
  134. </html>
  135. <?
  136. db_close();
  137. $empire=null;
  138. ?>