mobileProcessRunInfo.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <html ng-app="startFlow">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>流程明细</title>
  6. <script src="${pageContext.request.contextPath}/weixin/assets/js/importJs.js"></script>
  7. <script type="text/javascript">
  8. importCss(["/weixin/assets/js/ztree/css/zTreeStyle/zTreeStyle.css",
  9. "/weixin/assets/js/ztree/css/outLook.css",
  10. "/weixin/assets/css/jquery.qtip.css",
  11. "/weixin/assets/css/mobiscroll.custom-2.5.2.min.css",
  12. "/weixin/assets/css/form.css",
  13. "/weixin/assets/css/formValid.css"]);
  14. importJs(["/weixin/assets/js/angular.min.js",
  15. "/weixin/assets/js/zh_CN.js",
  16. "/weixin/assets/js/BaseService.js",
  17. "/weixin/assets/js/CustomValid.js",
  18. "/weixin/assets/js/mobiscroll.custom-2.5.2.min.js",
  19. "/js/hotent/platform/form/rule.js",
  20. "/weixin/assets/js/jquery.qtip.js",
  21. "/weixin/assets/js/ztree/js/jquery.ztree.core-3.5.js",
  22. "/weixin/assets/js/ztree/ZtreeCreator.js",
  23. "/weixin/assets/js/dialog/Dialogs.js",
  24. "/weixin/assets/js/formDirective.js",
  25. "/weixin/assets/js/bpm/FlowService.js",
  26. "/weixin/assets/js/bpm/FormUtil.js",
  27. "/weixin/assets/js/bpm/FormService.js",
  28. "/weixin/assets/editor/ueditor.config.js",
  29. "/weixin/assets/editor/ueditor.all.min.js",
  30. "/js/hotent/platform/form/CustomForm.js",
  31. "/js/hotent/CustomValid.js",
  32. "/js/util/form.js"]);
  33. /*KILLDIALOG*/
  34. var dialog = window;//调用页面的dialog对象(ligerui对象)
  35. if(frameElement){
  36. dialog = frameElement.dialog;
  37. }
  38. var isExtForm=eval('${isExtForm}');
  39. var runId=${processRun.runId};
  40. var status = ${processRun.status==1};
  41. $(function(){
  42. //loadFormSignData();
  43. if(isExtForm){
  44. var formUrl=$('#divExternalForm').html();
  45. if(formUrl){
  46. $('#divExternalForm').load(formUrl, function() {});
  47. }
  48. }
  49. $(".taskopinion").each(function(){
  50. $(this).removeClass("taskopinion");
  51. var actInstId=$(this).attr("instanceId");
  52. $(this).load("${ctx}/platform/bpm/taskOpinion/listform.ht?actInstId="+actInstId);
  53. });
  54. if(status){
  55. var add = $("tr.toolBar").find("a.add");
  56. add.hide();
  57. }
  58. });
  59. </script>
  60. <style type="text/css">
  61. .am-form-group span{
  62. border:none;
  63. }
  64. </style>
  65. </head>
  66. <body ng-controller="ctrl">
  67. <div id="divExternalForm">${form}</div>
  68. <input type="hidden" include="1" id="businessKey" name="businessKey" value="${businessKey}"/>
  69. </body>
  70. </html>