Files
EdgeAdmin/web/views/@default/ns/index.js

14 lines
298 B
JavaScript
Raw Normal View History

2021-05-27 17:09:53 +08:00
Tea.context(function () {
this.deleteDomain = function (domainId) {
let that = this
teaweb.confirm("确定要删除此域名吗?", function () {
that.$post("/ns/domains/delete")
.params({
domainId: domainId
})
.success(function () {
teaweb.reload()
})
})
}
})