| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath=path+"/";
- String id =request.getParameter("id");
- %>
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>流程播放器</title>
- <style type="text/css">
- html {
- height: 100%;
- padding: 0;
- }
- body {
- height: calc(100% - 16px);
- padding: 0;
- }
- #canvas {
- height: 100%;
- width:100%;
- padding: 0;
- }
- .needs-discussion {
- stroke: rgba(216, 76, 41, 1) !important; /* color elements as red */
- }
- </style>
- </head>
- <body>
- <div id="canvas"></div>
- <button type="submit" class="btn btn-default" style="display: none;" id="show-button"></button>
- <script type="text/javascript">
- var basePath = '<%=basePath%>';
- var id = '<%=id%>';
- </script>
- <script src="<%=basePath%>player/js/jquery/dist/jquery.min.js"></script>
- <script src="<%=basePath %>player/design/bpmn/show/bpmn-viewer.min.js"></script>
- <script src="<%=basePath %>player/design/bpmn/show/show.js"></script>
- </body>
- </html>
|