mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-27 13:40:25 +08:00
消息接收人可以设置接收消息时间段
This commit is contained in:
@@ -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 = ""
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user