2021-04-05 20:48:13 +08:00
|
|
|
Tea.context(function () {
|
2021-08-24 17:46:00 +08:00
|
|
|
this.userDescription = ""
|
2021-04-05 20:48:13 +08:00
|
|
|
|
2021-08-24 17:46:00 +08:00
|
|
|
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 = ""
|
|
|
|
|
}
|
2021-04-05 20:48:13 +08:00
|
|
|
})
|