extjs window窗口加载默认有个下拉按钮

问题遇到的现象和发生背景 extjs 使用window窗口,里面加了一棵树,加载进去默认有个下拉按钮
var showLvWindow = new Ext.Window({
                        width: 500,
                        height: 400,
                        layout: 'border',
                        title:'稽核状态',
                        modal: true,
                        plain: false,
                        autoShow: true,
                        closeAction: 'destroy',
                        bodyStyle: 'padding: 10px',
                        items: [dir01],
                        buttonAlign: 'center',
                        buttons: [{
                            iconCls: 'sure',
                            text: '确定',
                            handler: function () {
                                showLvWindow.close();
                            }
                        },{
                            iconCls: 'cancel',
                            text: '关闭',
                            handler: function () {
                                showLvWindow.close();
                            }
                        }]
                    });
                    showLvWindow.show();

用代码块功能插入代码,请勿粘贴截图
我的解答思路和尝试过的方法
我想要达到的结果 加载后直接展示树,不需要点击下拉按钮展示