editFlowConf.jsp 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  7. <title>编辑流程配置</title>
  8. <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
  9. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
  11. <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
  12. <script type="text/javascript" src="/shares/js/constant.js"></script>
  13. <script type="text/javascript" src="/shares/js/common.js"></script>
  14. <script type="text/javascript">
  15. function saveFlowConf(){
  16. $("#flowConf").submit();
  17. }
  18. $(function() {
  19. $("#conf_model_name").ligerComboBox();
  20. });
  21. </script>
  22. </head>
  23. <body>
  24. <form id="flowConf" action="amsFlowActionTemplate.do" method="post">
  25. <div id="title" class="form-button">
  26. <input onclick="saveFlowConf();" type="button" value="保存" class="l-button">
  27. <input onclick="closeWindow();" type="button" value="关闭" class="l-button">
  28. </div>
  29. <div class="container-layout">
  30. <div class="forum-container">
  31. <center>
  32. <table class="l-table-edit line">
  33. <tr>
  34. <th colspan="4">查看流程配置</th>
  35. </tr>
  36. <tr>
  37. <td class="l-table-edit-text" style="width:15%">流程配置ID:</td>
  38. <td class="l-table-edit-td" style="width:35%">
  39. ${requestScope.flowConf.conf_id }
  40. </td>
  41. </tr>
  42. <tr>
  43. <td class="l-table-edit-text" style="width:15%">流程配置名称:</td>
  44. <td class="l-table-edit-td" style="width:35%">
  45. ${requestScope.flowConf.conf_name }
  46. </td>
  47. </tr>
  48. <tr>
  49. <td class="l-table-edit-text" style="width:15%">流程配置模板:</td>
  50. <td class="l-table-edit-td" style="width:35%">
  51. <select id="conf_model_name" name="conf_model_name" class="short-text">
  52. <option value="" selected="selected">--请选择--</option>
  53. <c:forEach items="${requestScope.flowModel}" var="flow">
  54. <option value="${flow.modelId},${flow.modelName }" <c:if test="${requestScope.flowConf.conf_model_id==flow.modelId}">selected="selected"</c:if>>${flow.modelName }</option>
  55. </c:forEach>
  56. </select>
  57. </td>
  58. </tr>
  59. <tr>
  60. <td class="l-table-edit-text" style="width:15%">流程配置备注:</td>
  61. <td class="l-table-edt-td" style="width:35%">
  62. ${requestScope.flowConf.conf_mark }
  63. </td>
  64. </tr>
  65. </table>
  66. <input type="hidden" id="task" name="task" value="editConf">
  67. <input type="hidden" id="conf_id" name="conf_id" value="${requestScope.flowConf.conf_id }">
  68. <input type="hidden" id="tabid" name="tabid" value="${param.tabid }">
  69. </center>
  70. </div>
  71. </div>
  72. </form>
  73. <%@ include file="/include/message.jsp"%>
  74. </body>
  75. </html>