Files
EdgeAdmin/web/views/@default/clusters/ip-addrs/index.js

13 lines
271 B
JavaScript
Raw Normal View History

2021-08-31 17:24:30 +08:00
Tea.context(function () {
this.deleteAddr = function (addrId) {
teaweb.confirm("确定要删除这个IP地址吗", function () {
this.$post(".addr.delete")
.params({
addrId: addrId
})
.success(function () {
teaweb.reload()
})
})
}
})