实现重写规则管理

This commit is contained in:
刘祥超
2020-09-28 16:25:26 +08:00
parent 7f29f97b9f
commit d553757614
37 changed files with 935 additions and 66 deletions

View File

@@ -0,0 +1,11 @@
Tea.context(function () {
// 创建重写规则
this.createRewriteRule = function () {
teaweb.popup("/servers/server/settings/rewrite/createPopup?webId=" + this.webId, {
height: "26em",
callback: function () {
window.location.reload()
}
})
}
})