[网站服务]可以审核域名、查看审核结果

This commit is contained in:
刘祥超
2020-12-19 19:08:39 +08:00
parent dafdff9d9a
commit eced5f9417
8 changed files with 145 additions and 23 deletions

View File

@@ -1,3 +1,15 @@
Tea.context(function () {
this.success = NotifyReloadSuccess("保存成功")
this.auditSuccess = NotifyReloadSuccess("保存成功")
this.allServerNames = []
let that = this
this.serverNames.forEach(function (v) {
if (v.subNames == null || v.subNames.length == 0) {
that.allServerNames.push(v.name)
} else {
that.allServerNames.$pushAll(v.subNames)
}
})
this.auditing = 1
})