⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 am_ftm_ftp.asp

📁 物业管理和办公自动化系统
💻 ASP
字号:
<!--#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=400>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>

<%
	MyDBConnect
	' Output Result
	strSQL="select template_id,template_name,template_type_name,account_name"
	strSQL=strSQL & " from t_flow_template a,t_flow_template_type b,v_user_account c "
	strSQL=strSQL & " where a.template_type=b.template_type_id "
	strSQL=strSQL & " and a.template_author_id=c.account_id "
	strSQL=strSQL & " and a.template_id=" & Request.QueryString("tid")
	DBQuery(strSQL)
%>
<br>
<br>
<table cellspacing=0 cellpadding=0 align=center width=400 border=1>
<tr><td colspan=2 class=tblTitle>流 程 模 板 属 性</td></tr>
<tr>
	<td class=tdLabel width=80px>模板名称:</td>
	<td>&nbsp;<%=oRs("template_name")%></td>
</tr>
<tr>
	<td class=tdLabel>模板类型:</td>
	<td>&nbsp;<%=oRs("template_type_name")%></td>
</tr>
<tr>
	<td class=tdLabel>创建者:</td>
	<td>&nbsp;<%=oRs("account_name")%></td>
</tr>
</table>
<br>
<br>
<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr align=center>
	<td colspan=4 class=tblTitle>流 程 模 板 步 骤</td>
</tr>
<tr align=center>
	<td class=tdHead>步骤序号</td>
	<td class=tdHead>审批人</td>
	<td class=tdHead>操作</td>
	<td class=tdHead>描述</td>
</tr>
<%
	strSQL="select * from t_template_step a,v_user_account b,t_step_operation c"
	strSQL=strSQL & " where a.step_op_person=b.account_id "
	strSQL=strSQL & " and a.step_op_id=c.operation_id "
	strSQL=strSQL & " and template_id=" & Request.QueryString("tid")
	strSQL=strSQL & " order by step_no asc"
	DBQuery(strSQL)
    Do while (Not oRs.eof) 
		Response.Write("<tr align=center>")
		Response.Write("<td>&nbsp;" & oRs("step_no")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("account_name")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("operation_name")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("step_desc")&"</td>")
		Response.Write("</tr>")
		oRs.MoveNext 
    Loop 
	DBEndQuery
%>
</table>

<p align=center><a href=am_ftm_ftm.asp?tid=<%=Request.QueryString("tid")%>>
<img border=0  src=image/RecordEdit.gif alt="修改流程模板">修改流程模板</a>
<a href=am_ftm_ftd.asp?tid=<%=Request.QueryString("tid")%>><img border=0  src=image/Remove.gif alt="删除流程模板">删除流程模板</a>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -