CompanyAnalysis.js 825 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * 企业分析
  3. */
  4. Ext.define('saas.view.statistical.CompanyAnalysis', {
  5. extend: 'saas.view.core.List',
  6. xtype: 'statistical-companyanalysis',
  7. columns: [{
  8. text: '企业名称',
  9. dataIndex: 'name'
  10. }, {
  11. text: '企业地址',
  12. dataIndex: 'address'
  13. }, {
  14. text: '管理员',
  15. dataIndex: 'administrator'
  16. }, {
  17. text: '注册时间',
  18. dataIndex: 'registeTime'
  19. }, {
  20. text: '最近操作时间',
  21. dataIndex: 'lastTime'
  22. }, {
  23. text: '目前阶段',
  24. dataIndex: 'step'
  25. }, {
  26. text: '使用状态',
  27. dataIndex: 'status'
  28. }],
  29. store: Ext.create('Ext.data.Store', {
  30. fields: ['name', 'address', 'administrator', 'registeTime', 'lastTime', 'step', 'status'],
  31. data: [],
  32. })
  33. });