2021-10-07 16:47:14 +08:00
|
|
|
Tea.context(function () {
|
|
|
|
|
this.isRequesting = false
|
|
|
|
|
this.isOk = false
|
|
|
|
|
this.message = ""
|
2022-06-05 17:12:54 +08:00
|
|
|
this.failKeys = []
|
2021-10-07 16:47:14 +08:00
|
|
|
|
|
|
|
|
this.before = function () {
|
|
|
|
|
this.isRequesting = true
|
|
|
|
|
this.isOk = false
|
|
|
|
|
this.message = ""
|
2022-06-05 17:12:54 +08:00
|
|
|
this.failKeys = []
|
2021-10-07 16:47:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.success = function (resp) {
|
|
|
|
|
this.isOk = true
|
2022-06-05 17:12:54 +08:00
|
|
|
|
|
|
|
|
let f = NotifyReloadSuccess("任务提交成功")
|
|
|
|
|
f()
|
2021-10-07 16:47:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.fail = function (resp) {
|
|
|
|
|
this.message = resp.message
|
2022-06-05 17:12:54 +08:00
|
|
|
|
|
|
|
|
if (resp.data.failKeys != null) {
|
|
|
|
|
this.failKeys = resp.data.failKeys
|
|
|
|
|
}
|
2021-10-07 16:47:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.done = function () {
|
|
|
|
|
this.isRequesting = false
|
|
|
|
|
}
|
|
|
|
|
});
|