mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 06:40:27 +08:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
Tea.context(function () {
|
|
this.syncDomain = function (domainId) {
|
|
this.$post(".syncDomain")
|
|
.params({
|
|
domainId: domainId
|
|
})
|
|
.success(function () {
|
|
teaweb.success("从服务商获取线路成功", function () {
|
|
window.location.reload()
|
|
})
|
|
})
|
|
}
|
|
}) |