Files
waf-platform/EdgeAdmin/web/views/@default/users/setting/smsTest.js
2026-02-04 20:27:13 +08:00

17 lines
285 B
JavaScript

Tea.context(function () {
this.config = window.parent.TESTING_SMS_CONFIG
this.isSending = false
this.before = function () {
this.isSending = true
}
this.done = function () {
this.isSending = false
}
this.successSend = function () {
teaweb.success("发送成功")
}
})