wsDataTemplateGet.jsp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <%@include file="/commons/include/form.jsp"%>
  6. <title>WEB服务数据模板明细</title>
  7. <script type="text/javascript" src="${ctx}/js/javacode/codemirror.js"></script>
  8. <script type="text/javascript" src="${ctx}/js/javacode/InitMirror.js"></script>
  9. <style type="text/css">
  10. html,body{
  11. overflow:auto;
  12. }
  13. .para-info-table th, .para-info-table td{
  14. text-align: center;
  15. height: 32px;
  16. }
  17. .para-info-table td{
  18. padding:5px;
  19. }
  20. input{
  21. width:180px;
  22. }
  23. select{
  24. min-width:185px;
  25. height:24px;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="panel">
  31. <div class="panel-top">
  32. <div class="tbar-title">
  33. <span class="tbar-label">WEB服务数据模板明细</span>
  34. </div>
  35. <div class="panel-toolbar">
  36. <div class="toolBar">
  37. <div class="group">
  38. <a class="link back" href="list.ht"><span></span>返回</a>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="panel-body">
  44. <div class="panel-detail">
  45. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  46. <tr>
  47. <th width="20%">名称:</th>
  48. <td>${wsDataTemplate.name}</td>
  49. </tr>
  50. <tr>
  51. <th width="20%">别名:</th>
  52. <td>
  53. <c:forEach items="${bpmCommonWsSetList}" var="bpmCommonWsSet">
  54. <c:if test='${bpmCommonWsSet.id == wsDataTemplate.serviceId}'>${bpmCommonWsSet.alias}</c:if>
  55. </c:forEach>
  56. </td>
  57. </tr>
  58. <tr>
  59. <th width="20%">解析代码:</th>
  60. <td>
  61. <textarea id="parseScript" codemirror="true" mirrorheight="300px" rows="26" cols="70">${wsDataTemplate.script}</textarea>
  62. </td>
  63. </tr>
  64. <tr>
  65. <th width="20%">模板:</th>
  66. <td>
  67. <textarea id="templateScript" codemirror="true" mirrorheight="300px" rows="26" cols="70">${wsDataTemplate.template}</textarea>
  68. </td>
  69. </tr>
  70. </table>
  71. </div>
  72. </div>
  73. </div>
  74. </body>
  75. </html>