/** * 在线反馈 */ Ext.define('saas.view.cuservice.Feedback', { extend: 'saas.view.core.List', xtype: 'cuservice-feedback', viewModel: 'cuservice', cls: 'x-infocardlist', id: 'feedback', border: 1, columns: [{ text: 'id', dataIndex: 'cf_id', hidden: true }, { text: '反馈人', dataIndex: 'cf_name', width: 120 }, { text: '反馈时间', dataIndex: 'cf_creatime', width: 180, renderer: function(v, m, r) { return Ext.Date.format(new Date(v), 'Y-m-d H:i:s'); } }, { text: '反馈内容', width: 250, dataIndex: 'cf_content' }, { text: '状态', dataIndex: 'cf_status', width: 80 }, { text: '企业id', dataIndex: 'cf_companyid', hidden: true }, { text: '企业名', dataIndex: 'cf_company', width: 120 }, { text: '联系电话', dataIndex: 'cf_mobile', width: 120 }, { text: 'QQ', dataIndex: 'cf_qq', width: 120 }, { text: '微信', dataIndex: 'cf_wechat', width: 120 }, { text: '备注', dataIndex: 'cf_remark', width: 250 }], bind: { store: '{feedback}' } });