Files
EdgeAdmin/web/views/@default/admins/recipients/createPopup.js

30 lines
593 B
JavaScript
Raw Normal View History

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