/** * 企业注册数据 */ Ext.define('saas.view.statistical.CompanyInfo', { extend: 'saas.view.core.List', xtype: 'statistical-companyinfo', viewModel: 'statistical', id: 'companyinfo', columns: [{ text: '注册时间', dataIndex: 'create_time', width: 180, xtype: 'datecolumn', renderer: function(v, m, r) { return Ext.Date.format(new Date(v), 'Y-m-d h:i:s'); } }, { text: '企业编号', width: 200, dataIndex: 'business_code' }, { text: '企业名称', width: 200, dataIndex: 'name' }, { text: 'UU号', width: 120, dataIndex: 'uu' }, { text: '企业地址', width: 250, dataIndex: 'address' }, { text: '电话', width: 120, dataIndex: 'tel' }, { text: '传真', width: 150, dataIndex: 'fax' }, { text: '管理员', width: 100, dataIndex: 'realname' }, { text: '联系方式', width: 150, dataIndex: 'mobile' }], bind: { store: '{companyinfo}' } });