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();