123456789101112131415161718192021222324 |
- /**
- * 月注册分析
- */
- Ext.define('saas.view.statistical.MonthInfo', {
- extend: 'saas.view.core.List',
- xtype: 'statistical-monthinfo',
- columns: [{
- text: '姓名',
- dataIndex: 'name'
- }, {
- text: '手机号',
- dataIndex: 'phone'
- }, {
- text: '注册时间',
- dataIndex: 'registeTime'
- }],
- store: Ext.create('Ext.data.Store', {
- fields: ['name', 'phone', 'registeTime'],
- data: [],
- })
- });
|