showHistory.jsp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <script>
  3. function guanbihist(){
  4. $('#selectmaskdiv').fadeOut(100);
  5. $('#selectdiv').slideUp(0);
  6. }
  7. </script>
  8. <div class="theme-popover" id="selectmaskdiv" style="width: 700px;">
  9. <div class="theme-poptit">
  10. <div class="popTitle">
  11. <h4>流程历史</h4>
  12. </div>
  13. <div class="close">
  14. <a href="#" title="关闭" onclick="guanbihist()" >×</a>
  15. </div>
  16. </div>
  17. <!-- 列表 -->
  18. <div style="background-color:#f4f4f4;overflow-y: auto;width: 700px;">
  19. <table class="main_table" cellpadding="0" cellspacing="0" style="width: 99.9%">
  20. <tr>
  21. <th width="5%">序号</th>
  22. <th width="20%">操作人</th>
  23. <th width="20%">操作时间</th>
  24. <th width="15%">流程步骤</th>
  25. <th width="15%">处理结果</th>
  26. <th width="25%">处理意见</th>
  27. </tr>
  28. <tbody id="hisList">
  29. </tbody>
  30. </table>
  31. </div>
  32. </div>
  33. <div class="theme-popover-mask" id="selectdiv"></div>