Browse Source

解决冲突时多提交了一些代码。删掉

es6
Zhenfei.Li 6 years ago
parent
commit
1dacd25e5a
  1. 32
      demo/js/core/abstract/demo.button_group.js
  2. 234
      demo/js/core/abstract/demo.custom_tree.js
  3. 20
      demo/js/core/popup/demo.layer.js
  4. 29
      demo/js/core/popup/demo.popup_view.js

32
demo/js/core/abstract/demo.button_group.js

@ -11,24 +11,12 @@ Demo.Func = BI.inherit(BI.Widget, {
ref: function (_ref) { ref: function (_ref) {
ref = _ref; ref = _ref;
}, },
behaviors: { chooseType: BI.ButtonGroup.CHOOSE_TYPE_NONE,
highlight: function () {
return true;
}
},
chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI,
listeners: [{
eventName: BI.ButtonGroup.EVENT_CHANGE,
action: function (value) {
var content = "传递的参数为:" + value + " getValue方法得到的值为:" + this.getValue();
BI.Msg.alert("", content);
}
}],
layouts: [{ layouts: [{
type: "bi.vertical", type: "bi.vertical",
items: [{ items: [{
type: "bi.vtape", type: "bi.vtape",
height: 300 height: 200
}] }]
}], }],
items: [{ items: [{
@ -40,19 +28,7 @@ Demo.Func = BI.inherit(BI.Widget, {
}, { }, {
el: { el: {
type: "bi.button", type: "bi.button",
value: "button1" text: "1"
},
height: 50
}, {
el: {
type: "bi.button",
value: "button2"
},
height: 50
}, {
el: {
type: "bi.button",
value: "button3"
} }
}] }]
}, { }, {
@ -68,7 +44,7 @@ Demo.Func = BI.inherit(BI.Widget, {
}, { }, {
el: { el: {
type: "bi.button", type: "bi.button",
value: "2" text: "2"
}, },
height: 50 height: 50
}, { }, {

234
demo/js/core/abstract/demo.custom_tree.js

@ -28,12 +28,7 @@ Demo.Func = BI.inherit(BI.Widget, {
hgap: 30 hgap: 30
}] }]
}, },
items: BI.deepClone(TREEITEMS), items: BI.deepClone(TREEITEMS)
expander: {
el: {},
popup: {type: "bi.custom_tree"},
trigger: "hover"
}
}); });
return this.tree; return this.tree;
}, },
@ -63,57 +58,58 @@ Demo.Func = BI.inherit(BI.Widget, {
}]); }]);
} else { } else {
if (op.node.id == 1) { if (op.node.id == 1) {
callback([{ callback([
id: 11, {
pId: 1, id: 11,
type: "bi.plus_group_node", pId: 1,
text: "test11", type: "bi.plus_group_node",
value: 11, text: "test11",
height: 25, value: 11,
isParent: true height: 25,
}, { isParent: true
id: 12, },
pId: 1, {
type: "bi.single_select_item", id: 12,
text: "test12", pId: 1,
value: 12, type: "bi.single_select_item",
height: 35 text: "test12",
}, { value: 12,
id: 13, height: 35
pId: 1, },
type: "bi.single_select_item", {
text: "test13", id: 13,
value: 13, pId: 1,
height: 35 type: "bi.single_select_item",
}, { text: "test13",
id: 14, value: 13,
pId: 1, height: 35
type: "bi.single_select_item", },
text: "test14", {
value: 14, id: 14,
height: 35 pId: 1,
}, { type: "bi.single_select_item",
id: 15, text: "test14",
pId: 1, value: 14,
type: "bi.single_select_item", height: 35
text: "test15", },
value: 15, {
height: 35 id: 15,
}, { pId: 1,
id: 16, type: "bi.single_select_item",
pId: 1, text: "test15",
type: "bi.single_select_item", value: 15,
text: "test16", height: 35
value: 16, },
height: 35 {
}, { id: 16,
id: 17, pId: 1,
pId: 1, type: "bi.single_select_item",
type: "bi.single_select_item", text: "test16",
text: "test17", value: 16,
value: 17, height: 35
height: 35 },
}]); {id: 17, pId: 1, type: "bi.single_select_item", text: "test17", value: 17, height: 35}
]);
} else if (op.node.id == 2) { } else if (op.node.id == 2) {
callback([{ callback([{
id: 21, id: 21,
@ -122,7 +118,8 @@ Demo.Func = BI.inherit(BI.Widget, {
text: "test21", text: "test21",
value: 21, value: 21,
height: 35 height: 35
}, { },
{
id: 22, id: 22,
pId: 2, pId: 2,
type: "bi.single_select_item", type: "bi.single_select_item",
@ -154,12 +151,6 @@ Demo.Func = BI.inherit(BI.Widget, {
vgap: 0 vgap: 0
}] }]
} }
},
expander: {
el: {},
popup: {type: "bi.custom_tree"},
trigger: "click",
direction: "bottom"
} }
}); });
return this.asyncTree; return this.asyncTree;
@ -177,68 +168,75 @@ Demo.Func = BI.inherit(BI.Widget, {
row: 0, row: 0,
el: { el: {
type: "bi.vtape", type: "bi.vtape",
items: [{ items: [
el: this._createDefaultTree() {
}, { el: this._createDefaultTree()
el: {
type: "bi.center",
hgap: 10,
items: [{
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getValue",
height: 30,
handler: function () {
BI.Msg.alert("", JSON.stringify(self.tree.getValue()));
}
}, {
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getNodeByValue(第一级目录1)",
height: 30,
handler: function () {
BI.Msg.alert("", "节点名称为: " + self.tree.getNodeByValue("第一级目录1").getValue());
}
}]
}, },
height: 30 {
}] el: {
type: "bi.center",
hgap: 10,
items: [{
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getValue",
height: 30,
handler: function () {
BI.Msg.alert("", JSON.stringify(self.tree.getValue()));
}
}, {
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getNodeByValue(第一级目录1)",
height: 30,
handler: function () {
BI.Msg.alert("", "节点名称为: " + self.tree.getNodeByValue("第一级目录1").getValue());
}
}]
},
height: 30
}
]
} }
}, { }, {
column: 1, column: 1,
row: 0, row: 0,
el: { el: {
type: "bi.vtape", type: "bi.vtape",
items: [{ items: [
type: "bi.label", {
text: "异步加载数据", type: "bi.label",
height: 30 text: "异步加载数据",
}, { height: 30
el: this._createAsyncTree()
}, {
el: {
type: "bi.center",
hgap: 10,
items: [{
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getValue",
height: 30,
handler: function () {
BI.Msg.alert("", JSON.stringify(self.asyncTree.getValue()));
}
}, {
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getNodeById(11)",
height: 30,
handler: function () {
BI.Msg.alert("", "节点名称为: " + (self.asyncTree.getNodeById(11) && self.asyncTree.getNodeById(11).getText()));
}
}]
}, },
height: 30 {
}] el: this._createAsyncTree()
},
{
el: {
type: "bi.center",
hgap: 10,
items: [{
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getValue",
height: 30,
handler: function () {
BI.Msg.alert("", JSON.stringify(self.asyncTree.getValue()));
}
}, {
type: "bi.text_button",
cls: "mvc-button layout-bg2",
text: "getNodeById(11)",
height: 30,
handler: function () {
BI.Msg.alert("", "节点名称为: " + (self.asyncTree.getNodeById(11) && self.asyncTree.getNodeById(11).getText()));
}
}]
},
height: 30
}
]
} }
}] }]
}); });

20
demo/js/core/popup/demo.layer.js

@ -18,16 +18,16 @@ Demo.Func = BI.inherit(BI.Widget, {
BI.Layers.create(id1, self, { BI.Layers.create(id1, self, {
//偏移量 //偏移量
offset: { offset: {
left: 20, left: 10,
right: 20, right: 10,
top: 20, top: 10,
bottom: 20 bottom: 10
}, },
type: "bi.center_adapt", type: "bi.center_adapt",
cls: "bi-card", cls: "bi-card",
items: [{ items: [{
type: "bi.button", type: "bi.button",
text: "点击隐藏", text: "点击关闭",
handler: function () { handler: function () {
BI.Layers.hide(id1); BI.Layers.hide(id1);
} }
@ -43,16 +43,16 @@ Demo.Func = BI.inherit(BI.Widget, {
BI.Layers.make(id2, self, { BI.Layers.make(id2, self, {
//偏移量 //偏移量
offset: { offset: {
left: 20, left: 10,
right: 20, right: 10,
top: 20, top: 10,
bottom: 20 bottom: 10
}, },
type: "bi.center_adapt", type: "bi.center_adapt",
cls: "bi-card", cls: "bi-card",
items: [{ items: [{
type: "bi.button", type: "bi.button",
text: "点击移除", text: "点击关闭",
handler: function () { handler: function () {
BI.Layers.remove(id2); BI.Layers.remove(id2);
} }

29
demo/js/core/popup/demo.popup_view.js

@ -23,35 +23,6 @@ Demo.Func = BI.inherit(BI.Widget, {
}, },
popup: { popup: {
type: "bi.popup_view", type: "bi.popup_view",
ref: function (_ref) {
self.popupView = _ref;
},
tabs: [{
type: "bi.text_button",
value: "tab1",
cls: "bi-border",
handler: function () {
BI.Msg.alert("", "点击tab1");
}
}, {
type: "bi.text_button",
value: "tab2",
cls: "bi-border",
handler: function () {
BI.Msg.alert("", "点击tab2");
}
}],
logic: {
dynamic: true
},
tools: true,
buttons: [{
type: "bi.text_button",
value: "getValue",
handler: function () {
BI.Msg.alert("getValue", JSON.stringify(self.popupView.getValue()));
}
}],
el: { el: {
type: "bi.button_group", type: "bi.button_group",
layouts: [{ layouts: [{

Loading…
Cancel
Save