configFlowModel.jsp 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  9. <title>配置流程模版</title>
  10. <script type="text/javascript" src="/shares/js/jquery-1.8.2.js"></script>
  11. <script type="text/javascript" src="/shares/js/yw/bpm/promptDefine.js"></script>
  12. <link
  13. href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css"
  14. rel="stylesheet" type="text/css" />
  15. <script
  16. src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js"
  17. type="text/javascript"></script>
  18. <link href="${pageContext.request.contextPath}/main.css"
  19. rel="stylesheet" type="text/css" />
  20. <script type="text/javascript" src="/shares/js/constant.js"></script>
  21. <script type="text/javascript" src="/shares/js/common.js"></script>
  22. <script type="text/javascript" src="/shares/js/yw/bpm/oa.js"></script>
  23. <script type="text/javascript">
  24. $(function() {
  25. $("#layout1").ligerLayout({
  26. leftWidth : 200
  27. });
  28. });
  29. </script>
  30. <style type="text/css">
  31. #layout1 {
  32. width: 99.5%;
  33. margin: 0;
  34. padding: 0;
  35. }
  36. .l-page-top {
  37. height: 20%;
  38. background: #f8f8f8;
  39. margin-bottom: 3px;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div id="title" class="form-button" style="width: 100%;">
  45. <input onclick="closeTabUseInOA();" type="button" value="关闭" class="l-button">
  46. </div>
  47. <div class="container-layout" >
  48. <div class="l-page-top">
  49. <div class="forum-container">
  50. <center>
  51. <table class="l-table-edit line">
  52. <tr>
  53. <td class="l-table-edit-text" style="width: 20%">模版名称<FONT COLOR="red">*</FONT>:
  54. </td>
  55. <td class="l-table-edit-td">
  56. ${requestScope.fmodel.modelName }</td>
  57. <td class="l-table-edit-text">模版类型:
  58. </td>
  59. <td class="l-table-edit-td">
  60. ${requestScope.fmodel.typeId.typeName }</td>
  61. </tr>
  62. <tr>
  63. <td class="l-table-edit-text">模版备注:</td>
  64. <td class="l-table-edit-td" colspan="3">${requestScope.fmodel.remark }
  65. </td>
  66. </tr>
  67. </table>
  68. <input type="hidden" id="modelId" name="modelId"
  69. value="${requestScope.fmodel.modelId }">
  70. <input type="hidden" id="state" name="state"
  71. value="${requestScope.fmodel.state.value }">
  72. </center>
  73. </div>
  74. </div>
  75. <div id="layout1">
  76. <div position="left" style="height: 100%;">
  77. <iframe id="leftFrame" name="leftFrame" width="100%" height="95%"
  78. frameborder="0" style="overflow-x: hidden; overflow-y: scroll;" scrolling="auto"
  79. src="${pageContext.request.contextPath }/FlowModelAction.do?task=treeTacheAndPath&modelId=${requestScope.fmodel.modelId }">
  80. </iframe>
  81. </div>
  82. <div position="center" title="列表及详细">
  83. <iframe id="rightFrame" name="rightFrame" width="100%" height="100%"
  84. frameborder="0" scrolling="auto"
  85. src="${pageContext.request.contextPath }/TacheModelAction.do?task=toListForConfig&modelId=${requestScope.fmodel.modelId }">
  86. </iframe>
  87. </div>
  88. </div>
  89. </div>
  90. </body>
  91. </html>