forked from fanruan/fineui
guy
8 years ago
9 changed files with 8964 additions and 15 deletions
@ -0,0 +1 @@ |
|||||||
|
Demo.CONFIG = Demo.LAYOUT_CONFIG.concat(Demo.BASE_CONFIG).concat(Demo.CASE_CONFIG).concat(Demo.WIDGET_CONFIG); |
@ -0,0 +1,11 @@ |
|||||||
|
Demo.Button = BI.inherit(BI.Widget, { |
||||||
|
props: { |
||||||
|
baseCls: "demo-face" |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
return { |
||||||
|
type: "bi.vertical", |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
$.shortcut("demo.button", Demo.Button); |
@ -0,0 +1,8 @@ |
|||||||
|
Demo.BASE_CONFIG = [{ |
||||||
|
id: 2, |
||||||
|
text: "基础控件" |
||||||
|
}, { |
||||||
|
pId: 2, |
||||||
|
text: "bi.center_adapt", |
||||||
|
value: "demo.center_adapt" |
||||||
|
}]; |
@ -0,0 +1,8 @@ |
|||||||
|
Demo.CASE_CONFIG = [{ |
||||||
|
id: 3, |
||||||
|
text: "基础控件" |
||||||
|
}, { |
||||||
|
pId: 3, |
||||||
|
text: "bi.center_adapt", |
||||||
|
value: "demo.center_adapt" |
||||||
|
}]; |
@ -1,18 +1,6 @@ |
|||||||
Demo.CONFIG = [{ |
Demo.LAYOUT_CONFIG = [{ |
||||||
id: 1, |
id: 1, |
||||||
text: "布局" |
text: "布局" |
||||||
}, { |
|
||||||
id: 2, |
|
||||||
text: "基础控件" |
|
||||||
}, { |
|
||||||
id: 3, |
|
||||||
text: "实例控件" |
|
||||||
}, { |
|
||||||
id: 4, |
|
||||||
text: "详细控件" |
|
||||||
}, { |
|
||||||
id: 5, |
|
||||||
text: "通用组件" |
|
||||||
}, { |
}, { |
||||||
pId: 1, |
pId: 1, |
||||||
text: "bi.center_adapt", |
text: "bi.center_adapt", |
@ -0,0 +1,8 @@ |
|||||||
|
Demo.WIDGET_CONFIG = [{ |
||||||
|
id: 4, |
||||||
|
text: "基础控件" |
||||||
|
}, { |
||||||
|
pId: 4, |
||||||
|
text: "bi.center_adapt", |
||||||
|
value: "demo.center_adapt" |
||||||
|
}]; |
Loading…
Reference in new issue