| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
- <!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>
- <script type="text/javascript" src="/shares/js/jquery-1.8.2.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/promptDefine.js"></script>
- <link
- href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css"
- rel="stylesheet" type="text/css" />
- <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() {
- $("#layout1").ligerLayout({
- leftWidth : 200
- });
- });
-
- </script>
- <style type="text/css">
- #layout1 {
- width: 99.5%;
- margin: 0;
- padding: 0;
- }
- .l-page-top {
- height: 20%;
- background: #f8f8f8;
- margin-bottom: 3px;
- }
- </style>
- </head>
- <body>
- <div id="title" class="form-button" style="width: 100%;">
- <input onclick="closeTabUseInOA();" type="button" value="关闭" class="l-button">
- </div>
- <div class="container-layout" >
- <div class="l-page-top">
- <div class="forum-container">
- <center>
- <table class="l-table-edit line">
- <tr>
- <td class="l-table-edit-text" style="width: 20%">模版名称<FONT COLOR="red">*</FONT>:
- </td>
- <td class="l-table-edit-td">
- ${requestScope.fmodel.modelName }</td>
- <td class="l-table-edit-text">模版类型:
- </td>
- <td class="l-table-edit-td">
- ${requestScope.fmodel.typeId.typeName }</td>
- </tr>
- <tr>
- <td class="l-table-edit-text">模版备注:</td>
- <td class="l-table-edit-td" colspan="3">${requestScope.fmodel.remark }
- </td>
- </tr>
- </table>
- <input type="hidden" id="modelId" name="modelId"
- value="${requestScope.fmodel.modelId }">
- <input type="hidden" id="state" name="state"
- value="${requestScope.fmodel.state.value }">
- </center>
- </div>
- </div>
- <div id="layout1">
- <div position="left" style="height: 100%;">
- <iframe id="leftFrame" name="leftFrame" width="100%" height="95%"
- frameborder="0" style="overflow-x: hidden; overflow-y: scroll;" scrolling="auto"
- src="${pageContext.request.contextPath }/FlowModelAction.do?task=treeTacheAndPath&modelId=${requestScope.fmodel.modelId }">
- </iframe>
-
- </div>
- <div position="center" title="列表及详细">
- <iframe id="rightFrame" name="rightFrame" width="100%" height="100%"
- frameborder="0" scrolling="auto"
- src="${pageContext.request.contextPath }/TacheModelAction.do?task=toListForConfig&modelId=${requestScope.fmodel.modelId }">
- </iframe>
- </div>
- </div>
- </div>
-
- </body>
- </html>
|