CompanyInfo.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * 企业注册数据
  3. */
  4. Ext.define('saas.view.statistical.CompanyInfo', {
  5. extend: 'saas.view.core.List',
  6. xtype: 'statistical-companyinfo',
  7. viewModel: 'statistical',
  8. id: 'companyinfo',
  9. columns: [{
  10. text: '注册时间',
  11. dataIndex: 'create_time',
  12. width: 180,
  13. xtype: 'datecolumn',
  14. renderer: function(v, m, r) {
  15. return Ext.Date.format(new Date(v), 'Y-m-d h:i:s');
  16. }
  17. }, {
  18. text: '企业编号',
  19. width: 200,
  20. dataIndex: 'business_code'
  21. }, {
  22. text: '企业名称',
  23. width: 200,
  24. dataIndex: 'name'
  25. }, {
  26. text: 'UU号',
  27. width: 120,
  28. dataIndex: 'uu'
  29. }, {
  30. text: '企业地址',
  31. width: 250,
  32. dataIndex: 'address'
  33. }, {
  34. text: '电话',
  35. width: 120,
  36. dataIndex: 'tel'
  37. }, {
  38. text: '传真',
  39. width: 150,
  40. dataIndex: 'fax'
  41. }, {
  42. text: '管理员',
  43. width: 100,
  44. dataIndex: 'realname'
  45. }, {
  46. text: '联系方式',
  47. width: 150,
  48. dataIndex: 'mobile'
  49. }],
  50. bind: {
  51. store: '{companyinfo}'
  52. }
  53. });