Browse Source

feat: 还原demo修改

es6
Joker.Wang-王顺 2 years ago
parent
commit
4818b99ec3
  1. 99
      demo/js/core/abstract/demo.button_group.js

99
demo/js/core/abstract/demo.button_group.js

@ -7,63 +7,54 @@ Demo.Func = BI.inherit(BI.Widget, {
return { return {
type: "bi.vertical", type: "bi.vertical",
items: [{ items: [{
type: "bi.a", type: "bi.button_group",
ref: function (_ref) {
ref = _ref;
},
chooseType: BI.ButtonGroup.CHOOSE_TYPE_NONE,
layouts: [{
type: "bi.vertical",
items: [{
type: "bi.vtape",
height: 200
}]
}],
items: [{
el: { el: {
type: "bi.label", type: "bi.label",
text: "这就是一个百度超链" text: "button_group是一类具有相同属性或相似属性的抽象, 本案例实现的是布局的嵌套(vertical布局下内嵌center_adapt布局)"
}, },
href: "https://www.baidu.com" height: 150
}], }, {
// type: "bi.vertical", el: {
// items: [{ type: "bi.button",
// type: "bi.button_group", text: "1"
// ref: function (_ref) { }
// ref = _ref; }]
// }, }, {
// chooseType: BI.ButtonGroup.CHOOSE_TYPE_NONE, type: "bi.button",
// layouts: [{ text: "populate",
// type: "bi.vertical", handler: function () {
// items: [{ ref.populate([{
// type: "bi.vtape", el: {
// height: 200 type: "bi.label",
// }] text: "1"
// }], },
// items: [{ height: 50
// el: { }, {
// type: "bi.label", el: {
// text: "button_group是一类具有相同属性或相似属性的抽象, 本案例实现的是布局的嵌套(vertical布局下内嵌center_adapt布局)" type: "bi.button",
// }, text: "2"
// height: 150 },
// }, { height: 50
// el: { }, {
// type: "bi.button", el: {
// text: "1" type: "bi.label",
// } text: "3"
// }] }
// }, { }]);
// type: "bi.button", }
// text: "populate", }]
// handler: function () {
// ref.populate([{
// el: {
// type: "bi.label",
// text: "1"
// },
// height: 50
// }, {
// el: {
// type: "bi.button",
// text: "2"
// },
// height: 50
// }, {
// el: {
// type: "bi.label",
// text: "3"
// }
// }]);
// }
// }]
}; };
} }

Loading…
Cancel
Save