Files
waf-platform/EdgeUser/web/views/@default/ns/routes/internal.js
2026-02-04 20:27:13 +08:00

19 lines
385 B
JavaScript

Tea.context(function () {
this.createRoute = function () {
teaweb.popup("/ns/routes/createPopup", {
width: "50em",
height: "30em",
callback: function () {
teaweb.success("保存成功", function () {
window.location = "/ns/routes"
})
}
})
}
this.selectedType = "isp"
this.selectRouteType = function (routeType) {
this.selectedType = routeType
}
})