Ext.define('uas.view.window.searchPlan.Window', { extend: 'Ext.window.Window', alias: 'widget.searchPlanWindow', xtype: 'searchPlanWindow', cls: 'x-window-searchPlanWindow', title: '筛选方案', scrollable: true, bodyPadding: 4, resizable:false, constrain: true, modal: true, closable: true, layout: 'border', closeAction: 'hide', items:[{ width:260, frame:true, region:'west', xtype:'searchplan-treepanel' },{ margin:'0 0 0 1', xtype:'tabpanel', cls:'x-tab-searchPlanTab', region:'center', frame:true, tabBar: { layout: { pack: 'center' } }, items:[{ title:'条件设置', xtype:'conditionPanel' },{ title:'排序设置' },{ title:'列设置' }] }], listeners:{ show:function(){ const me = this; const baseConditionGrid = me.down("[name=baseConditionGrid]"); baseConditionGrid.refreshDate(me.grid); } } });