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.

32 lines
753 B

7 years ago
Demo.Func = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-func"
},
7 years ago
render: function () {
var self = this;
var date = new Date();
return {
7 years ago
type: "bi.calendar",
7 years ago
ref: function () {
self.calendar = this;
},
7 years ago
logic: {
dynamic: false
},
7 years ago
year: date.getFullYear(),
month: date.getMonth(),
day: date.getDate()
7 years ago
};
7 years ago
},
7 years ago
mounted: function () {
var date = new Date();
this.calendar.setValue({
year: date.getFullYear(),
month: date.getMonth(),
day: date.getDate()
7 years ago
});
7 years ago
}
});
7 years ago
BI.shortcut("demo.calendar", Demo.Func);