mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +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()
|
||
|
|
})
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|