mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-09 00:20:26 +08:00
30 lines
607 B
JavaScript
30 lines
607 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
this.createItem = function () {
|
||
|
|
teaweb.popup(Tea.url(".createPopup", {
|
||
|
|
clusterId: this.clusterId
|
||
|
|
}), {
|
||
|
|
callback: function () {
|
||
|
|
teaweb.success("保存成功", function () {
|
||
|
|
teaweb.reload()
|
||
|
|
})
|
||
|
|
},
|
||
|
|
width: "50em",
|
||
|
|
height: "25em"
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
this.deleteItem = function (itemId) {
|
||
|
|
let that = this
|
||
|
|
teaweb.confirm("确定要删除这个指标吗?", function () {
|
||
|
|
that.$post(".delete")
|
||
|
|
.params({
|
||
|
|
itemId: itemId
|
||
|
|
})
|
||
|
|
.success(function () {
|
||
|
|
teaweb.success("删除成功", function () {
|
||
|
|
teaweb.reload()
|
||
|
|
})
|
||
|
|
})
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|