editFlowConf.jsp 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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/yw/ronghua/orderFormSetting.js"></script>
  13. <script type="text/javascript" src="/shares/js/constant.js"></script>
  14. <script type="text/javascript" src="/shares/js/common.js"></script>
  15. <script type="text/javascript">
  16. function saveFlowConf(){
  17. $("#flowConf").submit();
  18. }
  19. </script>
  20. </head>
  21. <body>
  22. <form id="flowConf" action="erpFlowAction.do" method="post">
  23. <div id="title" class="form-button">
  24. <input onclick="saveFlowConf();" type="button" value="保存" class="l-button">
  25. <input onclick="closeWindow();" type="button" value="关闭" class="l-button">
  26. </div>
  27. <div class="container-layout">
  28. <div class="forum-container">
  29. <center>
  30. <table class="l-table-edit line">
  31. <tr>
  32. <th colspan="4">查看流程配置</th>
  33. </tr>
  34. <tr>
  35. <td class="l-table-edit-text" style="width:15%">流程配置ID:</td>
  36. <td class="l-table-edit-td" style="width:35%">
  37. ${requestScope.flowConf.conf_id }
  38. </td>
  39. </tr>
  40. <tr>
  41. <td class="l-table-edit-text" style="width:15%">流程配置名称:</td>
  42. <td class="l-table-edit-td" style="width:35%">
  43. ${requestScope.flowConf.conf_name }
  44. </td>
  45. </tr>
  46. <tr>
  47. <td class="l-table-edit-text" style="width:15%">流程配置模板:</td>
  48. <td class="l-table-edit-td" style="width:35%">
  49. <select id="conf_model_name" name="conf_model_name" class="short-text">
  50. <option value="" selected="selected">--请选择--</option>
  51. <c:forEach items="${requestScope.flowModel}" var="flow">
  52. <option value="${flow.modelId},${flow.modelName }" <c:if test="${requestScope.flowConf.conf_model_id==flow.modelId}">selected="selected"</c:if>>${flow.modelName }</option>
  53. </c:forEach>
  54. </select>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td class="l-table-edit-text" style="width:15%">流程配置备注:</td>
  59. <td class="l-table-edt-td" style="width:35%">
  60. ${requestScope.flowConf.conf_mark }
  61. </td>
  62. </tr>
  63. </table>
  64. <input type="hidden" id="task" name="task" value="editConf">
  65. <input type="hidden" id="conf_id" name="conf_id" value="${requestScope.flowConf.conf_id }">
  66. <input type="hidden" id="tabid" name="tabid" value="${param.tabid }">
  67. </center>
  68. </div>
  69. </div>
  70. </form>
  71. <%@ include file="/include/message.jsp"%>
  72. </body>
  73. </html>