Browse Source

feat: 还原demo修改

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

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

Loading…
Cancel
Save