fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
2.5 KiB

7 years ago
//定义Model路由
var modelRouter = new (BI.inherit(BI.WRouter, {
routes: {
"": "index"
},
index: function () {
return {};
}
}));
//定义View路由
var viewRouter = new (BI.inherit(BI.WRouter, {
routes: {
"": "TestView",
"/setget": "SetGetView",
"/local": "LocalView",
"/skipTo": "SkipToView",
"/skipTo/:child": "getSkipToView",
"/change": "ChangeView",
"/change/inner": "ChangeInnerView",
"/static": "StaticView",
"/event": "EventView",
"/layer": "LayerView",
"/masker": "MaskerView",
"/floatbox": "FloatBoxView",
"/spliceDuplicate": "SpliceDuplicateView",
"/spliceDuplicate/sdSub": "SDSubView",
"/tmp": "TmpView",
"/tmp/child": "TmpChildView",
"/tmp/child/child": "TmpChildChildView",
},
getSkipToView: function (v) {
switch (v) {
case "red":
return "SkipToRedView";
case "blue":
return "SkipToBlueView";
case "green":
return "SkipToGreenView";
case "yellow":
return "SkipToYellowView";
default :
return "SkipToRedView";
}
}
}));
//注册路由
BI.View.registerVMRouter(viewRouter, modelRouter);
7 years ago
Demo.FIX_CONFIG = [{
7 years ago
id: 6,
7 years ago
text: "数据流框架fix-1.0"
7 years ago
}, {
pId: 6,
text: "set,get方法",
value: "demo.setget"
}, {
pId: 6,
text: "local函数",
value: "demo.local"
}, {
pId: 6,
text: "skipTo函数",
value: "demo.skipTo"
}, {
pId: 6,
text: "change函数",
value: "demo.change"
}, {
pId: 6,
text: "splice和duplicate函数",
value: "demo.spliceDuplicate"
}, {
pId: 6,
text: "tmp方法",
value: "demo.tmp"
7 years ago
}, {
id: 7,
text: "数据流框架fix-2.0"
}, {
id: 71,
pId: 7,
7 years ago
text: "定义响应式数据",
value: "demo.fix1"
}, {
id: 72,
pId: 7,
7 years ago
text: "state属性",
value: "demo.fix6"
}, {
id: 78,
pId: 7,
7 years ago
text: "计算属性",
value: "demo.fix2"
}, {
id: 73,
pId: 7,
text: "store",
value: "demo.fix3"
}, {
id: 74,
pId: 7,
7 years ago
text: "watcher且或表达式",
7 years ago
value: "demo.fix4"
}, {
id: 75,
pId: 7,
7 years ago
text: "watcher星号表达式",
value: "demo.fix5"
}, {
id: 76,
pId: 7,
7 years ago
text: "一个混合的例子",
7 years ago
value: "demo.fix"
}, {
id: 77,
pId: 7,
text: "场景",
value: "demo.fix_scene"
7 years ago
}];