Vue.component("pages-and-shutdown-box", { props: ["v-pages", "v-shutdown-config"], data: function () { let pages = [] if (this.vPages != null) { pages = this.vPages } let shutdownConfig = { isOn: false, url: "", status: 0 } if (this.vShutdownConfig != null) { shutdownConfig = this.vShutdownConfig } let shutdownStatus = "" if (shutdownConfig.status > 0) { shutdownStatus = shutdownConfig.status.toString() } return { pages: pages, shutdownConfig: shutdownConfig, shutdownStatus: shutdownStatus } }, watch: { shutdownStatus: function (status) { let statusInt = parseInt(status) if (!isNaN(statusInt) && statusInt > 0 && statusInt < 1000) { this.shutdownConfig.status = statusInt } else { this.shutdownConfig.status = 0 } } }, methods: { addPage: function () { let that = this teaweb.popup("/servers/server/settings/pages/createPopup", { height: "22em", callback: function (resp) { that.pages.push(resp.data.page) } }) }, updatePage: function (pageIndex, pageId) { let that = this teaweb.popup("/servers/server/settings/pages/updatePopup?pageId=" + pageId, { height: "22em", callback: function (resp) { Vue.set(that.pages, pageIndex, resp.data.page) } }) }, removePage: function (pageIndex) { let that = this teaweb.confirm("确定要移除此页面吗?", function () { that.pages.$remove(pageIndex) }) } }, template: `
` })