|
|
|
@ -9,8 +9,8 @@ BI.$(function () {
|
|
|
|
|
}); |
|
|
|
|
var tree = BI.Tree.transformToTreeFormat(Demo.CONFIG); |
|
|
|
|
|
|
|
|
|
var routes = [{
|
|
|
|
|
path: '/',
|
|
|
|
|
var routes = [{ |
|
|
|
|
path: '/', |
|
|
|
|
component: function(){ |
|
|
|
|
return Promise.resolve({ |
|
|
|
|
type: "demo.face" |
|
|
|
@ -20,13 +20,13 @@ BI.$(function () {
|
|
|
|
|
|
|
|
|
|
BI.Tree.traversal(tree, function (index, node) { |
|
|
|
|
if (!node.children || BI.isEmptyArray(node.children)) { |
|
|
|
|
routes.push({
|
|
|
|
|
path: '/' + node.text,
|
|
|
|
|
routes.push({ |
|
|
|
|
path: '/' + node.text, |
|
|
|
|
component: function(){ |
|
|
|
|
return Promise.resolve({ |
|
|
|
|
type: node.value |
|
|
|
|
}) |
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -38,7 +38,7 @@ BI.$(function () {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.router", |
|
|
|
|
ref: function (_ref) { |
|
|
|
|
BI.router = _ref._router; |
|
|
|
|
BI.$router = _ref.$router; |
|
|
|
|
}, |
|
|
|
|
element: "#wrapper", |
|
|
|
|
routes: routes, |
|
|
|
@ -50,6 +50,6 @@ BI.$(function () {
|
|
|
|
|
ref = _ref; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|