task-tab.jsp 846 B

1234567891011121314151617181920212223242526272829303132
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%@include file="/context/mytags.jsp"%>
  4. <t:base type="jquery,easyui,tools"></t:base>
  5. <link id = "easyuiTheme" rel="stylesheet" type="text/css" href="plug-in/easyui/themes/metrole/main.css"></link>
  6. <t:tabs id="tt" iframe="false" tabPosition="top" fit="true">
  7. <t:tab
  8. href="taskController.do?goTaskForm&taskId=${taskId}"
  9. title="common.task.form"
  10. icon="fa fa-building"
  11. id="formPage"
  12. ></t:tab>
  13. <t:tab
  14. href="activitiController.do?viewProcessInstanceHistory&processInstanceId=${processInstanceId}"
  15. title="common.process.chart"
  16. icon="fa fa-sitemap"
  17. id="processPicture"
  18. ></t:tab>
  19. </t:tabs>
  20. <script>
  21. function callbackTable(msg){
  22. W.tip(msg);
  23. W.reloadTable();
  24. windowapi.close();
  25. }
  26. </script>