Commit 5b7b9c83 authored by 邓晓峰's avatar 邓晓峰

fix: 修复获取网关配置是否开启

parent 6c9cf38b
Pipeline #38889 passed with stages
......@@ -226,7 +226,7 @@ window.app = {
if(request === '.') {
return
}
return this.modules[request]();
return _.isFunction(this.modules[request]) && this.modules[request]();
},
define: function(name, context, index) {
let keys = context.keys();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment