阶段性提交

This commit is contained in:
刘祥超
2020-09-13 20:37:07 +08:00
parent 9093019c73
commit ec3c0cafb3
155 changed files with 1317 additions and 13193 deletions

View File

@@ -0,0 +1,13 @@
Tea.context(function () {
this.deleteServer = function (serverId) {
teaweb.confirm("确定要删除当前服务吗?", function () {
this.$post("$")
.params({
"serverId": serverId
})
.success(function () {
teaweb.successURL("删除成功", "/servers")
})
})
}
})