forked from fanruan/fineui
刘荣歆
7 years ago
6 changed files with 215 additions and 59 deletions
@ -0,0 +1,54 @@
|
||||
/* 文件管理导航 |
||||
Created by dailer on 2017 / 7 / 21.
|
||||
*/ |
||||
Demo.FileManager = BI.inherit(BI.Widget, { |
||||
props: { |
||||
baseCls: "" |
||||
}, |
||||
|
||||
render: function () { |
||||
var items = [{ |
||||
id: "1", |
||||
value: "1", |
||||
text: "根目录", |
||||
lastModify: 1454316355142 |
||||
}, { |
||||
id: "11", |
||||
pId: "1", |
||||
value: "11", |
||||
text: "第一级子目录1", |
||||
lastModify: 1454316355142 |
||||
}, { |
||||
id: "12", |
||||
pId: "1", |
||||
value: "12", |
||||
text: "第一级子目录2", |
||||
lastModify: 1454316355142 |
||||
}, { |
||||
id: "111", |
||||
pId: "11", |
||||
value: "111", |
||||
text: "第二级子目录", |
||||
lastModify: 1454316355142 |
||||
}, { |
||||
id: "121", |
||||
pId: "111", |
||||
buildUrl: "www.baidu.com", |
||||
value: "111", |
||||
text: "文件2", |
||||
lastModify: 1454316355142 |
||||
}, { |
||||
id: "122", |
||||
pId: "111", |
||||
buildUrl: "www.baidu.com", |
||||
value: "112", |
||||
text: "文件3", |
||||
lastModify: 1454316355142 |
||||
}]; |
||||
return { |
||||
type: "bi.file_manager", |
||||
items: items |
||||
} |
||||
} |
||||
}); |
||||
BI.shortcut("demo.file_manager", Demo.FileManager); |
@ -0,0 +1,71 @@
|
||||
BI.DateTimeTrigger = BI.inherit(BI.Trigger, { |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.DateTimeTrigger.superclass._defaultConfig.apply(this, arguments), { |
||||
extraCls: "bi-date-trigger", |
||||
min: '1900-01-01', //最小日期
|
||||
max: '2099-12-31', //最大日期
|
||||
height: 32 |
||||
}); |
||||
}, |
||||
_init: function () { |
||||
BI.DateTimeTrigger.superclass._init.apply(this, arguments); |
||||
var self = this, |
||||
o = this.options; |
||||
this.label = BI.createWidget({ |
||||
type: "bi.label", |
||||
textAlign: "left", |
||||
text: "", |
||||
height: o.height |
||||
}); |
||||
|
||||
BI.createWidget({ |
||||
type: "bi.htape", |
||||
element: this, |
||||
items: [{ |
||||
el: BI.createWidget({ |
||||
type: "bi.icon_button", |
||||
cls: "search-font" |
||||
}), |
||||
width: 30 |
||||
}, { |
||||
el: this.label |
||||
}] |
||||
}) |
||||
|
||||
var today = new Date(), |
||||
timeObj = { |
||||
year: today.getFullYear(), |
||||
month: today.getMonth(), |
||||
day: today.getDate(), |
||||
hour: today.getHours(), |
||||
minute: today.getMinutes(), |
||||
second: today.getSeconds() |
||||
}; |
||||
this.setValue(timeObj); |
||||
}, |
||||
|
||||
|
||||
|
||||
_parseTimeObjToStr: function (timeObj) { |
||||
var _format = function (p) { |
||||
return p < 10 ? ('0' + p) : p |
||||
}; |
||||
BI.each(timeObj, function (key, val) { |
||||
timeObj[key] = _format(timeObj[key]); |
||||
}); |
||||
return timeObj.year + "-" + (1 + BI.parseInt(timeObj.month)) + "-" + timeObj.day + " " + timeObj.hour + ":" + timeObj.minute + ":" + timeObj.second; |
||||
}, |
||||
|
||||
setValue: function (v) { |
||||
this.label.setValue(this._parseTimeObjToStr(v)); |
||||
|
||||
}, |
||||
|
||||
getValue: function () { |
||||
|
||||
} |
||||
|
||||
}); |
||||
|
||||
BI.shortcut("bi.date_time_trigger1", BI.DateTimeTrigger); |
Loading…
Reference in new issue