📄 am_om_fv.asp.bak
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>所有已审批流程管理</title>
<style>
<!-- @import url(../common.css); -->
</style>
</head>
<body>
<p>
<table cellspacing=0 cellpadding=0 align=center border=0 width=600>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>
<p>
<table cellspacing=0 cellpadding=0 align=center border=1 width=600>
<tr><td class=tblTitle colspan=7>所 有 已 审 批 流 程</td></tr>
<tr align=center>
<td class=tdHead>流程名</td>
<td class=tdHead>流程状态</td>
<td class=tdHead>流程模板</td>
<td class=tdHead>创建者</td>
<td class=tdHead>审核文件路径</td>
<td class=tdHead>催办方法</td>
<td class=tdHead>察看审批意见</td>
</tr>
<%
MyDBConnect
strSQL="select * from t_flow a,t_flow_stat b,t_flow_template d,v_user_account e "
strSQL=strSQL & " where a.flow_stat=b.stat_id "
strSQL=strSQL & " and a.flow_template_id=d.template_id"
strSQL=strSQL & " and a.flow_author_id=e.account_id"
strSQL=strSQL & " and a.flow_id in (select flow_id from t_flow_opinion)"
' If Request.QueryString("aid")<>"" Then
' strSQL=strSQL & " and e.account_id='" & Request.QueryString("aid") & "'"
' End If
DBQuery(strSQL)
%>
<%
Do while (Not oRs.eof) %>
<tr align=center>
<td> <%=oRs("flow_name")%></td>
<td> <%=oRs("stat_name")%></a></td>
<td> <%=oRs("template_name")%></td>
<td> <%=oRs("account_name")%></td>
<td> <%=GetSubject(oRs("flow_file"))%></td>
<td> <%=oRs("flow_urge_way")%></td>
<td> <a href=am_om_ov.asp?fid=<%=oRs("flow_id")%>><img border=0 src=image/uncheckall.gif alt="察看审批意见"></a></td>
</tr>
<% oRs.MoveNext
Loop
%>
</table>
<%
DBEndQuery
DBDisconnect
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -