| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * 企业分析
- */
- Ext.define('saas.view.statistical.CompanyAnalysis', {
- extend: 'saas.view.core.List',
- xtype: 'statistical-companyanalysis',
- columns: [{
- text: '企业名称',
- dataIndex: 'name'
- }, {
- text: '企业地址',
- dataIndex: 'address'
- }, {
- text: '管理员',
- dataIndex: 'administrator'
- }, {
- text: '注册时间',
- dataIndex: 'registeTime'
- }, {
- text: '最近操作时间',
- dataIndex: 'lastTime'
- }, {
- text: '目前阶段',
- dataIndex: 'step'
- }, {
- text: '使用状态',
- dataIndex: 'status'
- }],
- store: Ext.create('Ext.data.Store', {
- fields: ['name', 'address', 'administrator', 'registeTime', 'lastTime', 'step', 'status'],
- data: [],
- })
- });
|