AccessLog.js 571 B

123456789101112131415161718192021222324252627
  1. /**
  2. * 用户访问日志
  3. */
  4. Ext.define('saas.view.statistical.AccessLog', {
  5. extend: 'saas.view.core.List',
  6. xtype: 'statistical-accesslog',
  7. columns: [{
  8. text: '用户名',
  9. dataIndex: 'name'
  10. }, {
  11. text: '联系电话',
  12. dataIndex: 'phone'
  13. }, {
  14. text: '最后访问时间',
  15. dataIndex: 'lastTime'
  16. }, {
  17. text: '近三月访问次数',
  18. dataIndex: 'count'
  19. }],
  20. store: Ext.create('Ext.data.Store', {
  21. fields: ['name', 'phone', 'lastTime', 'count'],
  22. data: [],
  23. })
  24. });