fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { shortcut, Widget } from "@/core";
|
|
|
|
import { Msg } from "@/base";
|
|
|
|
|
|
|
|
@shortcut()
|
|
|
|
export class YearMonthCombo extends Widget {
|
|
|
|
static xtype = "demo.year_month_combo";
|
|
|
|
|
|
|
|
props = { baseCls: "" };
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
return {
|
|
|
|
type: "bi.horizontal_auto",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: "bi.dynamic_year_month_combo",
|
|
|
|
ref(_ref) {
|
|
|
|
self.widget = _ref;
|
|
|
|
},
|
|
|
|
width: 300,
|
|
|
|
// value: {
|
|
|
|
// type: 1,
|
|
|
|
// value: {
|
|
|
|
// year: 2018,
|
|
|
|
// month: 1
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "bi.button",
|
|
|
|
text: "getValue",
|
|
|
|
handler() {
|
|
|
|
Msg.toast(JSON.stringify(self.widget.getValue()));
|
|
|
|
},
|
|
|
|
width: 300,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "bi.button",
|
|
|
|
text: "setValue '2017-12'",
|
|
|
|
width: 300,
|
|
|
|
handler() {
|
|
|
|
self.widget.setValue({
|
|
|
|
year: 2017,
|
|
|
|
month: 12,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
vgap: 20,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|