WorkNewList.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:5k
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="WorkNewList.aspx.cs" Inherits="Work_WorkNewList" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <link href="../css/main.css" type="text/css" rel="stylesheet">
- </head>
- <script>
- function delete_form(flow_id)
- {
- msg='确认要删除该流程么?n这将删除以下数据:nn1、流程描述与步骤设置n2、依托于该流程的所有工作';
- if(window.confirm(msg))
- {
- URL="type_delete.aspx?flow_id="+flow_id+"&sort_id=1";
- window.location=URL;
- }
- }
- function empty_form(flow_id)
- {
- msg='确认要清空依托于该流程的所有工作数据么?';
- if(window.confirm(msg))
- {
- URL="type_empty.aspx?flow_id="+flow_id+"&sort_id=1";
- window.location=URL;
- }
- }
- function flow_design(flow_id)
- {
- 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");
- }
- </script>
- <SCRIPT language="JavaScript" src="../js/calendar.js"></SCRIPT>
- <body bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0">
- <form runat="server" id="fm1">
- <br>
- <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
- border="0">
- <tr>
- <th colspan="3" style="height: 25px">
- 新建工作流</th>
- </tr>
- <tr>
- <td class="usertablerow2" align="left" style="height: 32px;" colspan="2">
-
- <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CssClass="usertableborder"
- OnRowDataBound="GridView1_RowDataBound" PageSize="20" Width="100%">
- <Columns>
- <asp:BoundField DataField="ID" HeaderText="序号" />
- <asp:BoundField DataField="LCMC" HeaderText="工作流名称">
- <ItemStyle HorizontalAlign="Center" />
- </asp:BoundField>
- <asp:BoundField DataField="ID" DataFormatString="<a href="WorkFlowView.aspx?lcid={0}" target="_Blank">查看</a>"
- HeaderText="办事流程" HtmlEncode="False">
- <ItemStyle HorizontalAlign="Center" />
- </asp:BoundField>
- <asp:BoundField DataField="ID" DataFormatString="<a href="WorkFlowPICView.aspx?lcid={0}" target="_Blank">浏览</a>"
- HeaderText="流程图" HtmlEncode="False">
- <ItemStyle HorizontalAlign="Center" />
- </asp:BoundField>
- <asp:TemplateField HeaderText="表单">
- <HeaderStyle Width="150px" />
- <ItemTemplate>
- <%#BiaoDan()%>
- </ItemTemplate>
- <ItemStyle HorizontalAlign="Center" />
- </asp:TemplateField>
- <asp:TemplateField HeaderText="流程分类">
- <HeaderStyle Width="150px" />
- <ItemTemplate>
- <%#LiuCheng()%>
- </ItemTemplate>
- <ItemStyle HorizontalAlign="Center" />
- </asp:TemplateField>
-
-
- <asp:TemplateField HeaderText="操作">
- <HeaderStyle Width="200px" />
- <ItemTemplate>
- <%#CaoZuo()%>
- </ItemTemplate>
- <ItemStyle HorizontalAlign="Center" />
- </asp:TemplateField> </Columns>
- <RowStyle CssClass="usertablerow2" />
- <AlternatingRowStyle CssClass="usertablerow1" />
- </asp:GridView>
-
- </td>
- </tr>
-
- </table>
- <br>
- <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
- border="0">
- <tr>
- <th colspan="2">
- 使用方法</th>
- </tr>
- <tr>
- <td class="usertablerow1" align="right" width="11%">
- <strong>特殊说明</strong></td>
- <td class="usertablerow1" width="89%">
- <a href="http://www.woying.net/" target="_blank">挨个填写即可</a></td>
- </tr>
- </table>
- </form>
-
- </body>
- </html>