| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>流程列表</title>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="${pageContext.request.contextPath}/yw/bpm/style/flowlist.css" rel="stylesheet" type="text/css" />
- <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
- <script
- src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js"
- type="text/javascript"></script>
- <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/oa.js"></script>
- <script type="text/javascript">
-
- function saveFlowAlert() {
- submitForm("alertConf");
- }
-
- function getDate(){
- var now = new Date();
- return now.getFullYear() + "-" + (now.getMonth()+1) + "-" + now.getDate();
- }
-
- var oldSearch = null;
- function searchInPage(){
- if(oldSearch != null){
- $("table[title*='" + oldSearch + "']").css("border" ,"");
- }
- var search = stripscript($("#insName").val());
- oldSearch = search;
- $("table[title*='" + search + "']").css("border" ,"2px solid #ff0000");
- }
-
- function removeSearch(){
- var search =stripscript($("#insName").val());
- $("table[title*='" + search + "']").css("border" ,"");
- $("#insName").val("");
- }
- </script>
- </head>
- <body>
- <div class="container-layout" style="padding-top: 40px; ">
- <div id="title" class="form-button" style="width:100%;">
- <input onclick="closeTabUseInOA();" type="button" value="关闭" class="l-button">
- <input onclick="saveFlowAlert();" type="button" value="保存" class="l-button">
- </div>
- <div class="default_search" style="margin: 5px 0px 0px 0px ; width: 100%;">
- <ul class="list_search" style="width:250px;">
- <li class="title">流程标题:</li>
- <li class="text">
- <input type="text" id="insName" name="insName" style="width: 130px;">
- </li>
- </ul>
- <ul style="width:350px;"><li class="title"> </li>
- <li class="search-button">
- <input type="button" class='l-button' name="search" onclick="searchInPage()" value="查询"/>
- <input type="button" class='l-button' name="search" onclick="removeSearch()" value="清除条件"/>
- </li>
- </ul>
- </div>
- <form action="flowAlertAction.do?method=saveFlowAlert" method="post" name="alertConf">
- <div id="liucheng">
- <c:forEach items="${requestScope.ftypeList }" var="flowType">
- <div id="liucheng_lx">
- <div id="liucheng_lx_name">
- <span><img src="${pageContext.request.contextPath}/yw/bpm/style/liucheng_lx_name.png" /></span>${flowType.typeName }
- </div>
- </div>
- <% int i = 1; %>
- <c:forEach items="${requestScope.fList }" var="flow" varStatus="s">
- <c:if test="${flowType.typeId eq flow.typeId.typeId }">
- <% if(i%5==1){%>
- <div id="liucheng_name">
- <% }%>
- <div id="liucheng_name1">
- <table width="100%" class="bg" title="#${flow.modelName }" height="auto" cellpadding="0" cellspacing="0" border="0">
- <tbody>
- <tr>
- <td valign="middle" style="width:20%; text-align:center;"><img src="${pageContext.request.contextPath}/yw/bpm/style/li.png" />
- <c:if test="${flow.isAlert eq '1' }">
- <input type="checkbox" name="flowIds" title="是否提配" checked="checked" value="${flow.modelId}">
- </c:if>
- <c:if test="${flow.isAlert ne '1' }">
- <input type="checkbox" name="flowIds" title="是否提配" value="${flow.modelId}">
- </c:if>
- </td>
- <td style="width:80%;line-height:28px; text-align:left;" >${flow.modelName }</td>
- </tr>
- </tbody>
- </table>
- </div>
- <% if(i%5==0){%>
- </div>
- <% }
- i++;
- %>
- </c:if>
- </c:forEach>
- </c:forEach>
-
- </div>
- </form>
- </div>
- </div>
- <%@ include file="/include/message.jsp"%>
- </body>
- </html>
|