| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * 登录日志
- */
- Ext.define('saas.view.statistical.LoginLog', {
- extend: 'saas.view.core.List',
- xtype: 'statistical-loginlog',
- viewModel: 'statistical',
- id: 'loginlog',
- columns: [{
- text: 'id',
- dataIndex: 'account_id',
- hidden: true
- }, {
- text: '用户名',
- dataIndex: 'username',
- width: 120
- }, {
- text: '手机号',
- dataIndex: 'mobile',
- width: 120
- }, {
- text: '近三月登录次数',
- dataIndex: 'login_num'
- }, {
- text: '最后登录时间',
- dataIndex: 'lastesttime',
- width: 180,
- xtype: 'datecolumn',
- renderer: function(v, m, r) {
- return Ext.Date.format(new Date(v), 'Y-m-d H:i:s');
- }
- }],
- bind: {
- store: '{loginlog}'
- }
- });
|