WorkFlowManager.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:4k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="WorkFlowManager.aspx.cs" Inherits="WorkFlow_WorkFlowManager" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  3. <html>
  4. <head>
  5.     <link href="../css/main.css" type="text/css" rel="stylesheet">
  6. </head>
  7. <script>
  8. function delete_form(flow_id)
  9. {
  10.  msg='确认要删除该流程么?n这将删除以下数据:nn1、流程描述与步骤设置n2、依托于该流程的所有工作';
  11.  if(window.confirm(msg))
  12.  {
  13.   URL="type_delete.aspx?flow_id="+flow_id+"&sort_id=1";
  14.   window.location=URL;
  15.  }
  16. }
  17. function empty_form(flow_id)
  18. {
  19.  msg='确认要清空依托于该流程的所有工作数据么?';
  20.  if(window.confirm(msg))
  21.  {
  22.   URL="type_empty.aspx?flow_id="+flow_id+"&sort_id=1";
  23.   window.location=URL;
  24.  }
  25. }
  26. function flow_design(flow_id)
  27. {
  28.    window.open("Design/WorkFlowFormDesign.htm?flow_id="+flow_id,"flow_design","height=600,width=800,status=1,toolbar=no,menubar=no,location=no,scrollbars=yes,top=10,left=10,resizable=yes");
  29. }
  30. </script>
  31.   <SCRIPT language="JavaScript" src="../js/calendar.js"></SCRIPT>
  32. <body bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0">
  33. <form runat="server" id="fm1">
  34.     <br>
  35.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
  36.         border="0">
  37.         <tr>
  38.             <th colspan="3" style="height: 25px">
  39.                 工作流管理</th>
  40.         </tr>
  41.                <tr>
  42.             <td class="usertablerow2" align="left" style="height: 32px;" colspan="2">
  43.           
  44.                
  45.                <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CssClass="usertableborder"
  46.                     OnRowDataBound="GridView1_RowDataBound" PageSize="20" Width="100%">
  47.                     <Columns>
  48.                         <asp:BoundField DataField="ID" HeaderText="序号" />
  49.                           <asp:BoundField DataField="LCMC" HeaderText="流程名称">                        
  50.                             <ItemStyle HorizontalAlign="Center" />
  51.                         </asp:BoundField>   
  52.                                     <asp:TemplateField HeaderText="表单">
  53.                             <HeaderStyle Width="150px" />
  54.                             <ItemTemplate>
  55.                                 <%#BiaoDan()%>
  56.                             </ItemTemplate>
  57.                             <ItemStyle HorizontalAlign="Center" />
  58.                         </asp:TemplateField>    
  59.                              <asp:TemplateField HeaderText="流程分类">
  60.                             <HeaderStyle Width="150px" />
  61.                             <ItemTemplate>
  62.                                 <%#LiuCheng()%>
  63.                             </ItemTemplate>
  64.                             <ItemStyle HorizontalAlign="Center" />
  65.                         </asp:TemplateField>   
  66.                           
  67.             
  68.                           <asp:BoundField DataField="LCPXH" HeaderText="流程排序号">                        
  69.                             <ItemStyle HorizontalAlign="Center" />
  70.                         </asp:BoundField>
  71.                         
  72.                       <asp:TemplateField HeaderText="操作">
  73.                             <HeaderStyle Width="200px" />
  74.                             <ItemTemplate>
  75.                                 <%#CaoZuo()%>
  76.                             </ItemTemplate>
  77.                             <ItemStyle HorizontalAlign="Center" />
  78.                         </asp:TemplateField>           </Columns>
  79.                     <RowStyle CssClass="usertablerow2" />
  80.                     <AlternatingRowStyle CssClass="usertablerow1" />
  81.                 </asp:GridView>
  82.          
  83.             </td>
  84.         </tr>
  85.      
  86.     </table>
  87.     <br>
  88.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
  89.         border="0">
  90.         <tr>
  91.             <th colspan="2">
  92.                 使用方法</th>
  93.         </tr>
  94.         <tr>
  95.             <td class="usertablerow1" align="right" width="11%">
  96.                 <strong>特殊说明</strong></td>
  97.             <td class="usertablerow1" width="89%">
  98.                 <a href="http://www.woying.net/" target="_blank">挨个填写即可</a></td>
  99.         </tr>
  100.     </table>
  101.     </form>
  102.     
  103. </body>
  104. </html>