extAttributeList.jsp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  4. <div class="easyui-layout" fit="true">
  5. <div region="center" style="padding:0px;border:0px">
  6. <t:datagrid name="extAttributeList" checkbox="false" fitColumns="true" title="扩展属性设置" actionUrl="extAttributeController.do?datagrid" idField="id" fit="true" queryMode="group">
  7. <t:dgCol title="主键" field="id" hidden="true" queryMode="single" width="120"></t:dgCol>
  8. <t:dgCol title="创建人名称" field="createName" hidden="true" queryMode="single" width="120"></t:dgCol>
  9. <t:dgCol title="创建人登录名称" field="createBy" hidden="true" queryMode="single" width="120"></t:dgCol>
  10. <t:dgCol title="创建日期" field="createDate" formatter="yyyy-MM-dd" hidden="true" queryMode="single" width="120"></t:dgCol>
  11. <t:dgCol title="更新人名称" field="updateName" hidden="true" queryMode="single" width="120"></t:dgCol>
  12. <t:dgCol title="更新人登录名称" field="updateBy" hidden="true" queryMode="single" width="120"></t:dgCol>
  13. <t:dgCol title="更新日期" field="updateDate" formatter="yyyy-MM-dd" hidden="true" queryMode="single" width="120"></t:dgCol>
  14. <t:dgCol title="所属部门" field="sysOrgCode" hidden="true" queryMode="single" width="120"></t:dgCol>
  15. <t:dgCol title="所属公司" field="sysCompanyCode" hidden="true" queryMode="single" width="120"></t:dgCol>
  16. <t:dgCol title="流程状态" field="bpmStatus" hidden="true" queryMode="single" dictionary="bpm_status" width="120"></t:dgCol>
  17. <t:dgCol title="单据档案类型编码" field="billtypecode" queryMode="single" width="120"></t:dgCol>
  18. <t:dgCol title="单据档案名称" field="billtypename" query="true" queryMode="single" width="120"></t:dgCol>
  19. <t:dgCol title="单据档案表名" field="tablename" query="true" queryMode="single" width="120"></t:dgCol>
  20. <t:dgToolBar title="录入" icon="icon-add" operationCode="add" url="extAttributeController.do?goAdd" funname="add" width="1000" height="100%"></t:dgToolBar>
  21. <t:dgToolBar title="修改" icon="icon-edit" operationCode="edit" url="extAttributeController.do?goUpdate" funname="update" width="1000" height="100%"></t:dgToolBar>
  22. <t:dgToolBar title="查看" icon="icon-search" url="extAttributeController.do?goUpdate" funname="detail" width="1000" height="100%"></t:dgToolBar>
  23. </t:datagrid>
  24. </div>
  25. </div>
  26. <script src = "webpage/cn/com/lzt/extattribute/extAttributeList.js"></script>
  27. <script type="text/javascript">
  28. //导入
  29. function ImportXls() {
  30. openuploadwin('Excel导入', 'extAttributeController.do?upload', "extAttributeList");
  31. }
  32. //导出
  33. function ExportXls() {
  34. JeecgExcelExport("extAttributeController.do?exportXls","extAttributeList");
  35. }
  36. //模板下载
  37. function ExportXlsByT() {
  38. JeecgExcelExport("extAttributeController.do?exportXlsByT","extAttributeList");
  39. }
  40. </script>