<!--#include file="../conn1.asp" -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<TITLE>办公自动化系统</TITLE>
<link href="../skins/css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<span style="font-size: 9pt">
<%
LoginID=session("LoginID")
if session("LoginID") <> "" then
%>
</span>
<table cellPadding=1 cellSpacing=1 align=center width=100%>
<tr>
<th width="100%" style="text-align:center;"><span style="font-size: 9pt">
经济</span><span style="font-size: 9pt" lang="zh-cn">指标列表</span></th>
</tr>
</table>
<span style="font-size: 9pt">
<br>
</span>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" style="word-break:break-all" >
<tr align=center>
<td><span style="font-size: 9pt">报告期</span></td>
<td><span style="font-size: 9pt">区县</span></td>
<td><span style="font-size: 9pt">隔离点类型</span></td>
<td><span style="font-size: 9pt">隔离点名称</span></td>
<td><span style="font-size: 9pt">隔离点地址</span></td>
<td><span style="font-size: 9pt">房间总数</span></td>
<td><span style="font-size: 9pt">启用房间数</span></td>
<td><span style="font-size: 9pt">剩余房间数</span></td>
<td><span style="font-size: 9pt">当日新增隔离</span></td>
<td><span style="font-size: 9pt">当日解除隔离</span></td>
<td><span style="font-size: 9pt">正在隔离</span></td>
<td><span style="font-size: 9pt">解除隔离</span></td>
<td><span style="font-size: 9pt">其他</span></td>
<td><span style="font-size: 9pt">操作(<a href="zlgzAdd.asp">添加</a>)</span></td>
</tr>
<%
if LoginID= "shenhe" then
sql="select * from [题库] where 审核 = '否' order by id desc "
else
sql="select * from [题库] where 单位 = '"&LoginID&"'"
end if
i=1
set rs=conn.execute(sql)
while not rs.eof
if len(Trim(rs("题干")))>32 then
tigan = Left(Trim(rs("题干")),32)&"..."
else
tigan = Trim(rs("题干"))
end if
shenhe=rs("审核")
%>
<tr >
<td class="td1"><span style="font-size: 9pt"><%=rs("报告期")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("区县")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("隔离点类型")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("隔离点名称")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("房间数")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("启用房间数")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("剩余房间")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("当日新增隔离人数")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("当日解除隔离人数")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("正在隔离人数")%></span></td>
<td class="td1"><span style="font-size: 9pt"><%=rs("已经解除隔离人员")%></span></td>
<td align="center" class="td1"><a href="zlgzAdd.asp?id=<%=rs("id")%>">
<span style="font-size: 9pt">添加</span></a><span style="font-size: 9pt"> <a href="zlgzEdit.asp?id=<%=rs("id")%>">修改</a> <a href="zlgzShenhe.asp?id=<%=rs("id")%>"><%if LoginID="shenhe" then%>审核<%end if%></a> <a href="zlgzDel.asp?id=<%=rs("id")%>">删除</a>
</span>
</td>
</tr>
<%
i=i+1
rs.movenext
wend
rs.close
conn.close
%>
</table>
<span style="font-size: 9pt">
<%
else
%>
您没有权限操作
<%
end if
%>
</span>
</body>
</html>