MonthInfo.js 478 B

123456789101112131415161718192021222324
  1. /**
  2. * 月注册分析
  3. */
  4. Ext.define('saas.view.statistical.MonthInfo', {
  5. extend: 'saas.view.core.List',
  6. xtype: 'statistical-monthinfo',
  7. columns: [{
  8. text: '姓名',
  9. dataIndex: 'name'
  10. }, {
  11. text: '手机号',
  12. dataIndex: 'phone'
  13. }, {
  14. text: '注册时间',
  15. dataIndex: 'registeTime'
  16. }],
  17. store: Ext.create('Ext.data.Store', {
  18. fields: ['name', 'phone', 'registeTime'],
  19. data: [],
  20. })
  21. });