mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-17 22:30:25 +08:00
服务列表中增加“检查域名解析”选项
This commit is contained in:
@@ -1,3 +1,40 @@
|
||||
Tea.context(function () {
|
||||
this.servers.forEach(function (v) {
|
||||
v["status"] = {
|
||||
isOk: false,
|
||||
message: "",
|
||||
todo: ""
|
||||
}
|
||||
})
|
||||
|
||||
this.$delay(function () {
|
||||
if (this.checkDNS) {
|
||||
this.loadStatus()
|
||||
}
|
||||
|
||||
let that = this
|
||||
this.$watch("checkDNS", function (v) {
|
||||
if (v) {
|
||||
that.loadStatus()
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
this.loadStatus = function () {
|
||||
let serverIds = this.servers.map(function (v) {
|
||||
return v.id
|
||||
})
|
||||
this.$post(".status")
|
||||
.params({
|
||||
serverIds: serverIds
|
||||
})
|
||||
.success(function (resp) {
|
||||
let status = resp.data.status
|
||||
this.servers.forEach(function (server) {
|
||||
if (typeof status[server.id] === "object") {
|
||||
server.status = status[server.id]
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user