mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-10 17:30:29 +08:00
42 lines
786 B
JavaScript
42 lines
786 B
JavaScript
Tea.context(function () {
|
|
this.$delay(function () {
|
|
this.reload()
|
|
})
|
|
|
|
this.deleteTask = function (taskId) {
|
|
teaweb.confirm("确定要删除此任务吗?", function () {
|
|
this.$post(".deleteTask")
|
|
.params({
|
|
taskId: taskId
|
|
})
|
|
.success(function () {
|
|
window.location = Tea.url(".tasks")
|
|
})
|
|
})
|
|
}
|
|
|
|
this.resetTask = function (taskId) {
|
|
teaweb.confirm("确定要重置任务状态吗?", function () {
|
|
this.$post(".resetTask")
|
|
.params({
|
|
taskId: taskId
|
|
})
|
|
.refresh()
|
|
})
|
|
}
|
|
|
|
this.reload = function () {
|
|
this.$post("$")
|
|
.params({
|
|
taskId: this.task.id
|
|
})
|
|
.success(function (resp) {
|
|
this.task = resp.data.task
|
|
})
|
|
.done(function () {
|
|
this.$delay(function () {
|
|
this.reload()
|
|
}, 10000)
|
|
})
|
|
}
|
|
}) |