消息接收人可以设置接收消息时间段

This commit is contained in:
刘祥超
2021-08-24 17:46:00 +08:00
parent d5eceb05ce
commit e9dadd5571
12 changed files with 258 additions and 30 deletions

View File

@@ -1,11 +1,30 @@
Tea.context(function () {
this.userDescription = ""
this.userDescription = ""
this.changeInstance = function (instance) {
if (instance != null) {
this.userDescription = instance.media.userDescription
} else {
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 = ""
}
})