mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-09 00:20:26 +08:00
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
Tea.context(function () {
|
|
this.deleteGrant = function (grantId) {
|
|
teaweb.confirm("确定要删除此认证吗?", function () {
|
|
this.$post(".delete")
|
|
.params({
|
|
"grantId": grantId
|
|
})
|
|
.refresh();
|
|
});
|
|
};
|
|
}); |