Browse Source
Merge in VISUAL/fineui from ~GUY/fineui:master to master * commit '51491fb094d1dcb8e6e821323d05d8a696343a55': 支持自动watch 支持自动watches6
guy
3 years ago
4 changed files with 120 additions and 12 deletions
@ -0,0 +1,73 @@
|
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title></title> |
||||
<link rel="stylesheet" type="text/css" href="../dist/2.0/fineui.css"/> |
||||
<script src="../dist/2.0/fineui.js"></script> |
||||
</head> |
||||
<body> |
||||
<div id="wrapper"></div> |
||||
<script> |
||||
var Model = BI.inherit(Fix.Model, { |
||||
state: function () { |
||||
return { |
||||
columnSize: [200, "fill"] |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
BI.model("demo.model", Model); |
||||
|
||||
var Widget = BI.inherit(BI.Widget, { |
||||
props: { |
||||
height: 200, |
||||
width: 600 |
||||
}, |
||||
_store: function () { |
||||
return BI.Models.getModel("demo.model"); |
||||
}, |
||||
setup: function () { |
||||
var store = BI.useStore(); |
||||
return function () { |
||||
return { |
||||
type: "bi.htape", |
||||
columnSize: function () { |
||||
return store.model.columnSize; |
||||
}, |
||||
items: [{ |
||||
type: "bi.label", |
||||
css: { |
||||
background: "#eee" |
||||
} |
||||
}, { |
||||
type: "bi.center_adapt", |
||||
css: { |
||||
background: "#e0e0e0" |
||||
}, |
||||
items: [{ |
||||
type: "bi.button", |
||||
text: "点击", |
||||
handler: function () { |
||||
store.model.columnSize = [300, "fill"] |
||||
} |
||||
}] |
||||
}] |
||||
}; |
||||
}; |
||||
} |
||||
}); |
||||
BI.shortcut("demo.hooks", Widget); |
||||
BI.createWidget({ |
||||
type: "bi.absolute", |
||||
items: [{ |
||||
el: { |
||||
type: "demo.hooks" |
||||
}, |
||||
top: 100, |
||||
left: 100 |
||||
}], |
||||
element: "#wrapper" |
||||
}); |
||||
</script> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue