mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-13 11:53:34 +08:00
30 lines
593 B
JavaScript
30 lines
593 B
JavaScript
Tea.context(function () {
|
|
this.userDescription = ""
|
|
|
|
this.changeInstance = function (instance) {
|
|
if (instance != null) {
|
|
this.userDescription = instance.media.userDescription
|
|
} else {
|
|
this.userDescription = ""
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 发送时间
|
|
*/
|
|
this.timeFromHour = ""
|
|
this.timeFromMinute = ""
|
|
this.timeFromSecond = ""
|
|
this.timeToHour = ""
|
|
this.timeToMinute = ""
|
|
this.timeToSecond = ""
|
|
|
|
this.clearTime = function () {
|
|
this.timeFromHour = ""
|
|
this.timeFromMinute = ""
|
|
this.timeFromSecond = ""
|
|
this.timeToHour = ""
|
|
this.timeToMinute = ""
|
|
this.timeToSecond = ""
|
|
}
|
|
}) |