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.
35 lines
936 B
35 lines
936 B
7 years ago
|
Demo.Func = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-func"
|
||
|
},
|
||
|
_createNav: function (v) {
|
||
|
return BI.createWidget({
|
||
|
type: "bi.label",
|
||
|
cls: "layout-bg" + BI.random(1, 8),
|
||
|
text: "第" + v + "页"
|
||
|
})
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
return {
|
||
|
type: "bi.navigation",
|
||
|
defaultShowIndex: 0,
|
||
|
tab: {
|
||
|
height: 30,
|
||
|
items: [{
|
||
|
once: false,
|
||
|
text: "后退",
|
||
|
value: -1,
|
||
|
cls: "mvc-button layout-bg3"
|
||
|
}, {
|
||
|
once: false,
|
||
|
text: "前进",
|
||
|
value: 1,
|
||
|
cls: "mvc-button layout-bg4"
|
||
|
}]
|
||
|
},
|
||
|
cardCreator: BI.bind(this._createNav, this)
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.navigation", Demo.Func);
|