caseInfoAudit.jsp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>案例审批</title>
  6. <meta name="decorator" content="default"/>
  7. <script type="text/javascript">
  8. var validateForm;
  9. function doSubmit(obj){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。
  10. if(validateForm.form()){
  11. if(obj == 1) {
  12. $("#flag").val("yes");
  13. }else {
  14. $("#flag").val("no");
  15. }
  16. $("#inputForm").submit();
  17. return true;
  18. }
  19. return false;
  20. }
  21. $(document).ready(function() {
  22. validateForm = $("#inputForm").validate({
  23. submitHandler: function(form){
  24. loading('正在提交,请稍等...');
  25. form.submit();
  26. },
  27. errorContainer: "#messageBox",
  28. errorPlacement: function(error, element) {
  29. $("#messageBox").text("输入有误,请先更正。");
  30. if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
  31. error.appendTo(element.parent().parent());
  32. } else {
  33. error.insertAfter(element);
  34. }
  35. }
  36. });
  37. });
  38. function insertTitle(tValue){
  39. var list = "${caseInfo.workAttachments}";
  40. var str = (list.split('url')).length-1;
  41. var files = $("#attachment_file")[0].files;
  42. for(var i = 0;i<files.length;i++) {
  43. var file = files[i];
  44. var attachmentId = $("#id").val();
  45. var attachmentFlag = "76";
  46. console.log(file);
  47. var timestamp=new Date().getTime();
  48. var storeAs = "attachment-file/caseInfo/"+timestamp+"/"+file['name'];
  49. var uploadPath="http://gangwan-app.oss-cn-hangzhou.aliyuncs.com/"+storeAs;/*将这段字符串存到数据库即可*/
  50. var divId = "_attachment";
  51. $("#addFile"+divId).show();
  52. multipartUploadWithSts(storeAs, file,attachmentId,attachmentFlag,uploadPath,divId,str);
  53. }}
  54. function deleteFileFromAliyun(obj,deleteUrl){
  55. $.ajax({
  56. type:"post",
  57. url:deleteUrl,
  58. success:function(data){
  59. if(data.str){
  60. parent.layer.msg('删除成功',{icon:1});
  61. $(obj).parent().parent().remove();
  62. }else {
  63. parent.layer.msg('删除失败',{icon:1});
  64. }
  65. }
  66. });
  67. }
  68. /*-------------------分割线-------------------*/
  69. function addRow(list, idx, tpl, row){
  70. var idx1 = $("#caseBuildInfoList tr").length;
  71. if(list == '#caseBuildInfoList' && idx1 < 100){
  72. bornTemplete(list, idx, tpl, row, idx1);
  73. }
  74. var idx2 = $("#caseDesignInfoList tr").length;
  75. if(list == '#caseDesignInfoList' && idx2 < 100){
  76. bornTemplete(list, idx, tpl, row, idx2);
  77. }
  78. var idx3 = $("#caseExecuteInfoList tr").length;
  79. if(list == '#caseExecuteInfoList' && idx3 < 100){
  80. bornTemplete(list, idx, tpl, row, idx3);
  81. }
  82. var idx4 = $("#caseProjectFeatureList tr").length;
  83. if(list == '#caseProjectFeatureList' && idx4 < 100){
  84. bornTemplete(list, idx, tpl, row, idx4);
  85. }
  86. var idx5 = $("#caseNormList tr").length;
  87. if(list == '#caseNormList' && idx5 < 100){
  88. bornTemplete(list, idx, tpl, row, idx5);
  89. }
  90. var idx6 = $("#caseMaterialsList tr").length;
  91. if(list == '#caseMaterialsList' && idx6 < 100){
  92. bornTemplete(list, idx, tpl, row, idx6);
  93. }
  94. }
  95. function bornTemplete(list, idx, tpl, row, idx1){
  96. $(list).append(Mustache.render(tpl, {
  97. idx: idx, delBtn: true, row: row,
  98. order:idx1 + 1
  99. }));
  100. $(list+idx).find("select").each(function(){
  101. $(this).val($(this).attr("data-value"));
  102. });
  103. $(list+idx).find("input[type='checkbox'], input[type='radio']").each(function(){
  104. var ss = $(this).attr("data-value").split(',');
  105. for (var i=0; i<ss.length; i++){
  106. if($(this).val() == ss[i]){
  107. $(this).attr("checked","checked");
  108. }
  109. }
  110. });
  111. }
  112. </script>
  113. </head>
  114. <body >
  115. <div class="single-form">
  116. <div class="container">
  117. <form:form id="inputForm" modelAttribute="caseInfo" action="${ctx}/caseinfo/caseInfo/saveAudit" method="post" class="form-horizontal">
  118. <form:hidden path="id"/>
  119. <form:hidden path="home"/>
  120. <form:hidden path="act.taskId"/>
  121. <form:hidden path="act.taskName"/>
  122. <form:hidden path="act.taskDefKey"/>
  123. <form:hidden path="act.procInsId"/>
  124. <form:hidden path="act.procDefId"/>
  125. <form:hidden id="flag" path="act.flag"/>
  126. <sys:message content="${message}"/>
  127. <c:set var="status" value="${caseInfo.act.status}" />
  128. <div class="form-group layui-row first lw7">
  129. <div class="form-group-label"><h2>基础信息</h2></div>
  130. <div class="layui-item layui-col-sm12">
  131. <label class="layui-form-label"><span class="require-item">*</span>案例类别:</label>
  132. <div class="layui-input-block">
  133. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="${caseInfo.caseCategory.name}"/>
  134. </div>
  135. </div>
  136. <div class="layui-item layui-col-sm6">
  137. <label class="layui-form-label double-line"><span class="require-item">*</span>案例名称:</label>
  138. <div class="layui-input-block">
  139. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="${caseInfo.name}"/>
  140. </div>
  141. </div>
  142. <div class="layui-item layui-col-sm6">
  143. <label class="layui-form-label double-line"><span class="require-item">*</span>施工时间:</label>
  144. <div class="layui-input-block">
  145. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="<fmt:formatDate value="${caseInfo.startDate}" pattern="yyyy-MM-dd"/>"/>
  146. </div>
  147. </div>
  148. <div class="layui-item layui-col-sm6">
  149. <label class="layui-form-label double-line">案例来源:</label>
  150. <div class="layui-input-block">
  151. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="${fns:getDictLabel(caseInfo.source,'case_source','')}"/>
  152. </div>
  153. </div>
  154. <div class="layui-item layui-col-sm6">
  155. <label class="layui-form-label double-line"><span class="require-item">*</span>工程所在地:</label>
  156. <div class="layui-input-block">
  157. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="${caseInfo.area.name}"/>
  158. </div>
  159. </div>
  160. <div class="layui-item layui-col-sm12">
  161. <label class="layui-form-label double-line">所属项目:</label>
  162. <div class="layui-input-block">
  163. <input htmlEscape="false" class="form-control layui-input required" readonly="true" value="<c:choose><c:when test="${caseInfo.ext eq 0}">${caseInfo.project.projectName}</c:when><c:otherwise>${caseInfo.contractName}</c:otherwise></c:choose>"/>
  164. </div>
  165. </div>
  166. <div class="layui-item layui-col-sm12">
  167. <label class="layui-form-label">设计单位:</label>
  168. <div class="layui-input-block">
  169. <table id="bankinfo2" class="table table-bordered table-condensed details">
  170. <thead>
  171. <tr>
  172. <th width="40">序号</th>
  173. <th >单位名称</th>
  174. <th width="120"class="">联系人名称</th>
  175. <th width="170">联系方式</th>
  176. <th width="170">邮箱</th>
  177. </tr>
  178. </thead>
  179. <tbody id="caseDesignInfoList">
  180. <c:forEach items="${caseInfo.caseDesignInfoList}" var="buyDetails" varStatus="status">
  181. <tr>
  182. <td>${status.index + 1}</td>
  183. <td title="${buyDetails.name}">${buyDetails.name}</td>
  184. <td>${buyDetails.linkedman}</td>
  185. <td>${buyDetails.mobile}</td>
  186. <td>${buyDetails.email}</td>
  187. </tr>
  188. </c:forEach>
  189. <c:if test="${linkManSize == 0}">
  190. <tr>
  191. <td colspan="8">暂无数据</td>
  192. </tr>
  193. </c:if>
  194. </tbody>
  195. </table>
  196. </div>
  197. </div>
  198. <div class="layui-item layui-col-sm12">
  199. <label class="layui-form-label">建设单位:</label>
  200. <div class="layui-input-block">
  201. <table id="bankinfo" class="table table-bordered table-condensed details">
  202. <thead>
  203. <tr>
  204. <th width="40">序号</th>
  205. <th >单位名称</th>
  206. <th width="120"class="">联系人名称</th>
  207. <th width="170">联系方式</th>
  208. <th width="170">邮箱</th>
  209. </tr>
  210. </thead>
  211. <tbody id="caseBuildInfoList">
  212. <c:forEach items="${caseInfo.caseBuildInfoList}" var="buyDetails" varStatus="status">
  213. <tr>
  214. <td>${status.index + 1}</td>
  215. <td title="${buyDetails.name}">${buyDetails.name}</td>
  216. <td>${buyDetails.linkedman}</td>
  217. <td>${buyDetails.mobile}</td>
  218. <td>${buyDetails.email}</td>
  219. </tr>
  220. </c:forEach>
  221. <c:if test="${linkManSize == 0}">
  222. <tr>
  223. <td colspan="8">暂无数据</td>
  224. </tr>
  225. </c:if>
  226. </tbody>
  227. </table>
  228. </div>
  229. </div>
  230. <div class="layui-item layui-col-sm12">
  231. <label class="layui-form-label">施工单位:</label>
  232. <div class="layui-input-block">
  233. <table id="bankinfo3" class="table table-bordered table-condensed details">
  234. <thead>
  235. <tr>
  236. <th width="40">序号</th>
  237. <th >单位名称</th>
  238. <th width="120"class="">联系人名称</th>
  239. <th width="170">联系方式</th>
  240. <th width="170">邮箱</th>
  241. </tr>
  242. </thead>
  243. <tbody id="caseExecuteInfoList">
  244. <c:forEach items="${caseInfo.caseExecuteInfoList}" var="buyDetails" varStatus="status">
  245. <tr>
  246. <td>${status.index + 1}</td>
  247. <td title="${buyDetails.name}">${buyDetails.name}</td>
  248. <td>${buyDetails.linkedman}</td>
  249. <td>${buyDetails.mobile}</td>
  250. <td>${buyDetails.email}</td>
  251. </tr>
  252. </c:forEach>
  253. <c:if test="${linkManSize == 0}">
  254. <tr>
  255. <td colspan="8">暂无数据</td>
  256. </tr>
  257. </c:if>
  258. </tbody>
  259. </table>
  260. </div>
  261. </div>
  262. <div class="layui-item layui-col-sm6 with-textarea">
  263. <label class="layui-form-label"><span class="require-item">*</span>项目特征:</label>
  264. <div class="layui-input-block">
  265. <textarea readonly="true" htmlEscape="false" rows="4" maxlength="2000" class="form-control ">${caseInfo.peculiarity}</textarea>
  266. </div>
  267. </div>
  268. <div class="layui-item layui-col-sm6 with-textarea">
  269. <label class="layui-form-label">案例特性:</label>
  270. <div class="layui-input-block">
  271. <textarea readonly="true" htmlEscape="false" rows="4" maxlength="2000" class="form-control ">${caseInfo.feature}</textarea>
  272. </div>
  273. </div>
  274. <div class="layui-item layui-col-sm6">
  275. <label class="layui-form-label double-line">造价指标:单位造价(元):</label>
  276. <div class="layui-input-block">
  277. <input htmlEscape="false" class="form-control number layui-input" value="${caseInfo.price}"/>
  278. </div>
  279. </div>
  280. <div class="layui-item layui-col-sm6">
  281. <label class="layui-form-label"><span class="require-item">*</span>单位:</label>
  282. <div class="layui-input-block">
  283. <input htmlEscape="false" class="form-control required layui-input" value="${caseInfo.unit}"/>
  284. </div>
  285. </div>
  286. <div class="layui-item layui-col-sm12">
  287. <label class="layui-form-label double-line">材料消耗量指标:</label>
  288. <div class="layui-input-block">
  289. <table id="bankinfo4" class="table table-bordered table-condensed details">
  290. <thead>
  291. <tr>
  292. <th width="40">序号</th>
  293. <th width="">名称</th>
  294. <th width="220">型号</th>
  295. <th width="110">单位消耗量</th>
  296. <th width="90">单位</th>
  297. <th width="100">合价</th>
  298. <th width="90">比重</th>
  299. </tr>
  300. </thead>
  301. <tbody id="caseMaterialsNormList">
  302. <c:forEach items="${caseInfo.caseMaterialsNormList}" var="buyDetails" varStatus="status">
  303. <tr>
  304. <td>${status.index + 1}</td>
  305. <td title="${buyDetails.name}">${buyDetails.name}</td>
  306. <td>${buyDetails.type}</td>
  307. <td>${buyDetails.unitContent}</td>
  308. <td>${buyDetails.unit}</td>
  309. <td>${buyDetails.allPrice}</td>
  310. <td>${buyDetails.proportion}</td>
  311. </tr>
  312. </c:forEach>
  313. <c:if test="${linkManSize == 0}">
  314. <tr>
  315. <td colspan="8">暂无数据</td>
  316. </tr>
  317. </c:if>
  318. </tbody>
  319. </table>
  320. </div>
  321. </div>
  322. <div class="layui-item layui-col-sm12">
  323. <label class="layui-form-label double-line">机械消耗量指标:</label>
  324. <div class="layui-input-block">
  325. <table id="bankinfo5" class="table table-bordered table-condensed details">
  326. <thead>
  327. <tr>
  328. <th width="40">序号</th>
  329. <th width="">名称</th>
  330. <th width="220">型号</th>
  331. <th width="110">单位消耗量</th>
  332. <th width="90">单位</th>
  333. <th width="100">合价</th>
  334. <th width="90">比重</th>
  335. </tr>
  336. </thead>
  337. <tbody id="caseMechanicalNormList">
  338. <c:forEach items="${caseInfo.caseMechanicalNormList}" var="buyDetails" varStatus="status">
  339. <tr>
  340. <td>${status.index + 1}</td>
  341. <td title="${buyDetails.name}">${buyDetails.name}</td>
  342. <td>${buyDetails.type}</td>
  343. <td>${buyDetails.unitContent}</td>
  344. <td>${buyDetails.unit}</td>
  345. <td>${buyDetails.allPrice}</td>
  346. <td>${buyDetails.proportion}</td>
  347. </tr>
  348. </c:forEach>
  349. <c:if test="${linkManSize == 0}">
  350. <tr>
  351. <td colspan="8">暂无数据</td>
  352. </tr>
  353. </c:if>
  354. </tbody>
  355. </table>
  356. </div>
  357. </div>
  358. <div class="layui-item layui-col-sm12">
  359. <label class="layui-form-label double-line">人工消耗量指标:</label>
  360. <div class="layui-input-block">
  361. <table id="bankinfo6" class="table table-bordered table-condensed details">
  362. <thead>
  363. <tr>
  364. <th width="40">序号</th>
  365. <th width="">名称</th>
  366. <th width="220">型号</th>
  367. <th width="110">单位消耗量</th>
  368. <th width="90">单位</th>
  369. <th width="100">合价</th>
  370. <th width="90">比重</th>
  371. </tr>
  372. </thead>
  373. <tbody id="casePeopleNormList">
  374. <c:forEach items="${caseInfo.casePeopleNormList}" var="buyDetails" varStatus="status">
  375. <tr>
  376. <td>${status.index + 1}</td>
  377. <td title="${buyDetails.name}">${buyDetails.name}</td>
  378. <td>${buyDetails.type}</td>
  379. <td>${buyDetails.unitContent}</td>
  380. <td>${buyDetails.unit}</td>
  381. <td>${buyDetails.allPrice}</td>
  382. <td>${buyDetails.proportion}</td>
  383. </tr>
  384. </c:forEach>
  385. <c:if test="${linkManSize == 0}">
  386. <tr>
  387. <td colspan="8">暂无数据</td>
  388. </tr>
  389. </c:if>
  390. </tbody>
  391. </table>
  392. </div>
  393. </div>
  394. <div class="layui-item layui-col-sm12">
  395. <label class="layui-form-label double-line">主要材料单价:</label>
  396. <div class="layui-input-block">
  397. <table id="contentTable" class="table table-bordered table-condensed details">
  398. <thead>
  399. <tr>
  400. <th>材料名称</th>
  401. <th width="100px">规格型号</th>
  402. <th width="60px">单位</th>
  403. <th width="90px">材料含税价</th>
  404. <th width="90px">材料除税价</th>
  405. <th width="90px">价格取用日期</th>
  406. <th width="80px">税率</th>
  407. <th width="80px">材质</th>
  408. <th>品牌</th>
  409. </tr>
  410. </thead>
  411. <tbody id="workAccountList">
  412. <c:forEach items="${caseInfo.caseMaterialsList}" var="caseMaterials" varStatus="status">
  413. <tr id="index${status.index}">
  414. <td class="hide">${caseMaterials.id}</td>
  415. <td>
  416. <a title="${caseMaterials.name}" href="javascript:void(0)" onclick="openDialogView('查看材料单信息', '${ctx}/casematerials/caseMaterials/form?id=${caseMaterials.id}&tabId=1','90%','90%')">
  417. ${caseMaterials.name}
  418. </a>
  419. </td>
  420. <td title="${caseMaterials.specification}">${caseMaterials.specification}</td>
  421. <td title="${caseMaterials.calculateUnit}">${caseMaterials.calculateUnit}</td>
  422. <td title="${caseMaterials.taxPrice}">${caseMaterials.taxPrice}</td>
  423. <td title="${caseMaterials.price}">${caseMaterials.price}</td>
  424. <td ><fmt:formatDate value="${caseMaterials.useDate}" pattern="yyyy-MM-dd"/></td>
  425. <td class="hide">${fns:getDictLabel(caseMaterials.source, 'caseM_source', '')}</td>
  426. <td title="${caseMaterials.tax}">${caseMaterials.tax}</td>
  427. <td title="${caseMaterials.material}">${caseMaterials.material}</td>
  428. <td title="${caseMaterials.brand}">${caseMaterials.brand}</td>
  429. <td class="hide">${caseMaterials.pp}</td>
  430. <td class="hide">${caseMaterials.area.name}</td>
  431. </tr>
  432. </c:forEach>
  433. </tbody>
  434. </table>
  435. </div>
  436. </div>
  437. <div class="layui-item layui-col-sm12 with-textarea">
  438. <label class="layui-form-label double-line">偏差分析/记录/其他情况:</label>
  439. <div class="layui-input-block">
  440. <textarea htmlEscape="false" rows="4" class="form-control ">${caseInfo.record}</textarea>
  441. </div>
  442. </div>
  443. <div class="form-group layui-row">
  444. <div class="layui-item layui-col-sm12">
  445. <label class="layui-form-label">案例类型:</label>
  446. <div class="layui-input-block">
  447. <input type="radio" value="1" class="i-checks" id="shareStatus" name="shareStatus" onclick="display(this.value)">
  448. <label>一般案例</label>
  449. <input type="radio" value="2" class="i-checks" id="shareStatus2" name="shareStatus" onclick="display(this.value)" >
  450. <label>典型案例</label>
  451. </div>
  452. </div>
  453. </div>
  454. </div>
  455. <div class="form-group layui-row">
  456. <div class="form-group-label"><h2>附件信息</h2></div>
  457. <div class="layui-item layui-col-xs12" style="padding:0 16px;">
  458. <table id="upTable" class="table table-bordered table-condensed details">
  459. <thead>
  460. <tr>
  461. <%-- <th>序号</th>--%>
  462. <th>文件</th>
  463. <th>上传人</th>
  464. <th>上传时间</th>
  465. <th width="150px">操作</th>
  466. </tr>
  467. </thead>
  468. <tbody id="file_attachment">
  469. <c:forEach items="${caseInfo.workAttachments}" varStatus="status" var="workClientAttachment">
  470. <tr>
  471. <%--<td>${status.index + 1}</td>--%>
  472. <c:choose>
  473. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpg')
  474. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'png')
  475. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'gif')
  476. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'bmp')
  477. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpeg')}">
  478. <td><img src="${workClientAttachment.url}" width="50" height="50" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${workClientAttachment.url}','90%','90%')" alt="${workClientAttachment.attachmentName}">
  479. </c:when>
  480. <c:otherwise>
  481. <c:choose>
  482. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')}">
  483. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%','1')">${workClientAttachment.attachmentName}</a></td>
  484. </c:when>
  485. <c:otherwise>
  486. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%')">${workClientAttachment.attachmentName}</a></td>
  487. </c:otherwise>
  488. </c:choose>
  489. </c:otherwise>
  490. </c:choose>
  491. <td>${workClientAttachment.createBy.name}</td>
  492. <td><fmt:formatDate value="${workClientAttachment.createDate}" pattern="yyyy-MM-dd"/></td>
  493. <td class="op-td">
  494. <div class="op-btn-box" >
  495. <a href="javascript:location.href='${ctx}/workfullmanage/workFullManage/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download">下载</a>
  496. <%--<a href="${ctx}/caseinfo/caseInfo/downLoadAttach?file=${workClientAttachment.url}" class="btn btn-success btn-xs">下载</a>--%>
  497. <%--<a href="${workClientAttachment.url}" class="btn btn-info btn-xs">下载</a>--%>
  498. <%--<a href="${ctx}/caseinfo/caseInfo/deleteFileFromAliyun?attachmentId=${workClientAttachment.id}&id=${caseInfo.id}">删除</a>--%>
  499. </div>
  500. </td>
  501. </tr>
  502. </c:forEach>
  503. </tbody>
  504. </table>
  505. </div>
  506. </div>
  507. <div class="form-group layui-row lw8">
  508. <div class="form-group-label"><h2>审批意见</h2></div>
  509. <div class="layui-item layui-col-sm12 with-textarea">
  510. <label class="layui-form-label">审批意见:</label>
  511. <div class="layui-input-block">
  512. <form:textarea path="act.comment" class="form-control" rows="4" maxlength="127" />
  513. <input type="file" name="upload_files" style="display: none;">
  514. </div>
  515. </div>
  516. </div>
  517. <div class="form-group layui-row">
  518. <div class="form-group-label"><h2>审批流程</h2></div>
  519. <div class="layui-item layui-col-xs12 form-table-container" >
  520. <act:flowChart procInsId="${caseInfo.act.procInsId}"/>
  521. <act:histoicFlow procInsId="${caseInfo.act.procInsId}"/>
  522. </div>
  523. </div>
  524. <div class="form-group layui-row page-end"></div>
  525. </form:form>
  526. </div>
  527. </div>
  528. </body>
  529. </html>