| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- Ext.define('erp.view.plm.test.Buganalyse',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'desk',
- layout: 'border',
- items: [
- {
- region:'west',
- split: true,
- width:'30%',
- layout:'anchor',
- items:[{
- anchor:'100% 100%',
- height:'100%',
- xtype:'erpProjectTreePanel',
- },/*{
- xtype: 'datepicker',
- anchor:'100% 35%',
- height:'35%',
- id:'picker',
- //minDate: new Date(),
- handler: function(picker, date) {
- }
- }*/]
- },
- {
- layout:'anchor',
- region:'center',
- items:[{
- style:'background:#CDCDB4',
- bodyStyle: 'background:#CDCDB4;',
- anchor:'100% 6%',
- xtype:'AnalyseForm',
- },
- {
- title:'处理统计',
- anchor:'100% 47%',
- xtype:'erpAnalyseHandGridPanel',
- id:'hand',
- url:'plm/test/handgrid.action',
- region:'south',
- },{
- title:'提出统计',
- anchor:'100% 47%',
- xtype:'erpAnalyseTestGridPanel',
- id:'test',
- url:'plm/test/testgrid.action',
- region:'center',
- },]
- }
- ]
- }]
- });
- me.callParent(arguments);
- }
- });
|