123456789101112131415161718192021222324252627 |
- /**
- * 用户访问日志
- */
- Ext.define('saas.view.statistical.AccessLog', {
- extend: 'saas.view.core.List',
- xtype: 'statistical-accesslog',
- columns: [{
- text: '用户名',
- dataIndex: 'name'
- }, {
- text: '联系电话',
- dataIndex: 'phone'
- }, {
- text: '最后访问时间',
- dataIndex: 'lastTime'
- }, {
- text: '近三月访问次数',
- dataIndex: 'count'
- }],
- store: Ext.create('Ext.data.Store', {
- fields: ['name', 'phone', 'lastTime', 'count'],
- data: [],
- })
- });
|