这里面的if(shortcuts){
        shortcuts.on('click', function(e, t){//尤其是这里的dt和e是什么意识
            if(t = e.getTarget('dt', shortcuts)){
                e.stopEvent();
                var module = app.getModule(t.id.replace('-shortcut', ''));
                if(module){
                    module.createWindow();
                }
            }
        });
    }
在线等答案啊