Files
EdgeAdmin/web/views/@default/servers/accesslogs/test.js

15 lines
241 B
JavaScript
Raw Normal View History

2021-07-29 16:51:22 +08:00
Tea.context(function () {
2021-07-29 17:33:42 +08:00
this.isRequesting = false
2021-07-29 16:51:22 +08:00
this.success = function () {
teaweb.success("发送成功")
}
2021-07-29 17:33:42 +08:00
this.before = function () {
this.isRequesting = true
}
this.done = function () {
this.isRequesting = false
}
2021-07-29 16:51:22 +08:00
})